Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How could one populate a 2d array from a text file using split?

String proxies[][] = {{"127.0.0.1","80"}, {"127.0.0.1","443"}, {"127.0.0.1","3306"}};

In my text file I have data with a ip:port on each line:

127.0.0.1:80
127.0.0.1.443
127.0.0.1.3306

I could populate a 1d array using split like this:

proxies = everyLine.split("\\n");

How would I insert the ip:port data into a 2d array?

share|improve this question

3 Answers

up vote 1 down vote accepted
    String[] lines = everyLine.split("\\n");
    String[][] proxies = new String[lines.length][];
    int i=0;
    for ( String line : lines )
    {
        proxies[i++] = line.split(":");
    }
share|improve this answer

Using Java constructs it's not possible. You can use Apache Commons method FileUtils#lineIterator(File, String) to iterate over lines and apply String.split(String) on each

share|improve this answer
thank you I will check it out. – Kyle Jul 11 '11 at 17:38

you could split on the : operator.

String []proxies = everyLine.split("\\n");
for(int i=0;i<proxies.length;i++){
 String[] anotherDimention= proxies[i].split(":");
// do something useful with it
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.