gpt4 book ai didi

java - 如何在java中添加字符串和int的循环

转载 作者:行者123 更新时间:2023-12-01 16:55:01 25 4
gpt4 key购买 nike

我有这个代码:

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>");

我需要更改“Name 1”等效 INT 结果

例如:

String[] arr2 = new String[] {"Name 1","Name 2","Name 3","Name 4","Name 5"};

最佳答案

你只需要这样做:

for(int i=0; i<arr.length; i++){ 
html.append("<td width=30><img src=\"icon.customtex_" + arr[i] + "\" width=32 height=32></td>");
html.append("<td align=\"center\" width=290>" + arr2[i] + "</td>");
}

关于java - 如何在java中添加字符串和int的循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61603863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com