Help for this page

Select Code to Download


  1. or download this
       for (int i<0; i< array.size(); i++) {
          String result = "PR-" + array[i] + "-RD";
          file.write(result);
       }
    
  2. or download this
       int size = array.size();
       for (int i<0; i< size; i++) {
    
  3. or download this
      StringBuffer sb = new StringBuffer();
      int size = array.size();
    ...
         file.write(sb.toString());
         sb.length(0);
      }