Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~139 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for Shinku

[CODE]import java.io.*; import java.util.ArrayList; import java.util.Scanner; class Arralist{ public static <Cd> void main(String [] args) { ArrayList<Cd> liste = new ArrayList<Cd>(); try { Scanner input = new Scanner(new File("text.txt")); while (input.hasNext()) { liste.add(input.next()); } input.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } } }[/CODE] I got error like this : …

Member Avatar for Taywin
0
139