Android Open Source - PubNubTest Pub Nub Helper






From Project

Back to project page PubNubTest.

License

The source code is released under:

GNU General Public License

If you think the Android project PubNubTest listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

// Copyrights Fahad Zafar 2013
// Email: zoalord12@gmail.com
/*  w  w  w .  ja va 2s  . com*/
package com.example.pubnubtest;

import java.util.Random;

// This class provides helper functions. 
public class PubNubHelper {
  // Generate a random string using the alphabet provided. The lenght of the
  // return string is input to the function.
  public static String RandomString(int length) {
    String AB = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    Random rnd = new Random();

    StringBuilder sb = new StringBuilder(length);
    for (int i = 0; i < length; i++) {
      sb.append(AB.charAt(rnd.nextInt(AB.length())));
    }
    return sb.toString();

  }
}




Java Source Code List

com.example.pubnubtest.Benchmark.java
com.example.pubnubtest.MainActivity.java
com.example.pubnubtest.PubManager.java
com.example.pubnubtest.PubNubHelper.java