user3774450
user3774450

Reputation: 13

How do display Multiple Lines in a JOptionPane with ArrayList

I'm trying to display 2 Arraylist in the JOptionPane. But I get the following on the dialog box

1,2,3,4
Swimming, Running, Cycling, Basketball

I would like to show the info in the dialog box like the following:

1 Swimming
2 Running
3 Cycling
4 Basketball

Please advise how do I go about? Here are my codes.

import javax.swing.*;
import java.util.ArrayList;

public class gamelist {
    public static void main(String args[]){

        ArrayList<String> sku = new ArrayList<String> ();
        sku.add("1");
        sku.add("2");
        sku.add("3");
        sku.add("4");


        ArrayList<String> games = new ArrayList<String>();
        games.add("Swimming");
        games.add("Running");
        games.add("Cycling");
        games.add("Basketball");

        for(int i = 0; i<games.size(); i++){

            String everything = sku.toString();
            String everything2 = games.toString();

            JOptionPane.showInputDialog(null, everything +"\n"+ everything2);       
        }

     }

}

Upvotes: 1

Views: 11064

Answers (1)

Raheel Shahzad
Raheel Shahzad

Reputation: 156

You can do this very easily. Put those lines in a String as an output and then print that in JOptionPane. After adding your data to arraylist just do the following.

String output = "";
for(int i = 0; i<games.size(); i++){
    String everything = sku.get(i).toString();
    String everything2 = games.get(i).toString();

    output += everything +" "+ everything2 + "\n";       
}
JOptionPane.showMessageDialog(null, output);

Upvotes: 4

Related Questions