Test Title

83 阅读1分钟

Testcontent

qqqq

static String getChinese() {

    Random random = new Random();
    int max= 0x5000 - 0x4e00 + 1;
    int base= 0x4e00 ;
    int r = base+random.nextInt(max);
    return String.fromCharCode(r);
  }