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.

~7K People Reached
Favorite Forums
Favorite Tags
Member Avatar for o0oKodako0o

I use: [ICODE]Integer.toBinaryString(number);[/ICODE] to get binary string. I want to get the sum of two binary number. how do i do? example: 0010 + 0011 = 0101! Thanks! smb help me please!

Member Avatar for apines
0
115
Member Avatar for o0oKodako0o

I have a ArrayList and JTable load Object from ArrayList to display on table. When i sort table by using method: [CODE]table.setAutoCreateRowSorter(true);[/CODE] by using that method, i can sort table by clicking on header of the column i want to sort! But after sort, the Object of row which i …

Member Avatar for o0oKodako0o
0
652
Member Avatar for o0oKodako0o

I have this problem when i create a sortable JTable with data load from an ArrayList! My project is Student Management and i add some function like Add/Edit/Delete infomation. With unsortable JTable, add/edit/delete function is ok, but with sortable JTable, when i click on the header of one column, that …

Member Avatar for peter_budo
0
51
Member Avatar for LianaN

Hi! Could someone please help me to solve one more problem. To read the data (ArrayList) from file, I'm using the following code, which assumes that columns are separated with ",". It works perfectly: [CODE] public static List<UserDataRow> readData() { List<UserDataRow> listofusers = new ArrayList<UserDataRow>(); FileInputStream fstream = null; try …

Member Avatar for LianaN
1
6K
Member Avatar for o0oKodako0o

I have a problem about loading/saving ArrayList from/to file. I've searched some thread about this but it's not ok, because the demo used ArrayList<String> but i used ArrayList<Student> with Class Student [ICODE]public class Student { private String id; private String name; private int year; private String genre; private String course; …

Member Avatar for Buffalo101
0
168