Search:

Type: Posts; User: Gamerv08

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    1,251

    Re: Java array and string question

    You'd have to set up a buffered reader then have it collect the data from the file in the line-by-line manner you're wanting and have it in a for loop that counts and just have i as the place in the...
  2. Replies
    3
    Views
    1,481

    Re: How do I combine two strings in an array?

    public String[] combine(String[] array){
    StringBuilder sb = new StringBuilder();
    String[] combined = {};
    for(int i = 0; i < array.length/2; i + 2){
    ...
Results 1 to 2 of 2