У меня есть этот код:
int[] arr = new int[] {0254,0156,0641,0974,0112};
html.append("<table border=1 valign=\"center\" width=270 height=30
background=\"L2UI_CT1.Windows_DF_Drawer_Bg\">");
html.append("<tr>");
for(int i:arr){
html.append("<td width=30><img src=\"icon.customtex_" + i + "\" width=32 height=32></td>");
html.append("<td align=\"center\" width=290>Name 1</td>");
}
html.append("</tr>");
html.append("</table>");
Мне нужно изменить «Имя 1», эквивалентный результат INT
, например:
String[] arr2 = new String[] {"Name 1","Name 2","Name 3","Name 4","Name 5"};