Thread: Saving an Integer arraylist to a character file

Results 1 to 4 of 4
  1. #1 Saving an Integer arraylist to a character file 
    Registered Member
    Join Date
    Nov 2010
    Posts
    34
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    So we have:

    [code=java]public ArrayList <Integer>array = new ArrayList<Integer> ();
    [/code]
    What's the best way to save that to a character file?
    Reply With Quote  
     

  2. #2  
    Номер 1


    Leanbow's Avatar
    Join Date
    Feb 2008
    Posts
    5,910
    Thanks given
    1,558
    Thanks received
    2,617
    Rep Power
    5000
    loop values
    Reply With Quote  
     

  3. #3  
    touched like seafood
    Women's Avatar
    Join Date
    Mar 2010
    Posts
    1,830
    Thanks given
    651
    Thanks received
    1,001
    Discord
    View profile
    Rep Power
    3071
    Code:
    for(int i = 0: i < array.size(); i++) {
        file.write(array.get(i));
    }
    something like that?
    Last edited by Women; 07-17-2013 at 08:22 PM. Reason: use regular for loop


    When you ape the cops it ain't anarchy
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Nov 2010
    Posts
    34
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    What would be the best way to load it then? It's saving as "1203" etc, each digit representing an integer.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Ip saving to characters file[HELP]
    By Almagesrnubs in forum Help
    Replies: 2
    Last Post: 06-16-2012, 12:36 PM
  2. i need help adding playtime to my characters files
    By OodlesOfNoodles in forum Help
    Replies: 0
    Last Post: 08-06-2011, 07:16 AM
  3. How to Save Booleans to Character files
    By Jattio in forum Tutorials
    Replies: 4
    Last Post: 10-10-2010, 03:20 AM
  4. Replies: 8
    Last Post: 01-08-2008, 05:58 AM
  5. Writing a int to character files
    By Eternal Darknes in forum Tutorials
    Replies: 7
    Last Post: 11-30-2007, 05:55 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •