initialize your string s1
.
String s1 = "";
for(Integer s : array)
{
s1 += s;
}
JOptionpane.showMessageDialog(null, s1);
solved Put Integer ArrayList into a a single String
initialize your string s1
.
String s1 = "";
for(Integer s : array)
{
s1 += s;
}
JOptionpane.showMessageDialog(null, s1);
solved Put Integer ArrayList into a a single String