如何重新排列这些标签以获得不同的结果? 这是代码:
lbl1.setText(" File 1: " + File1.getName());
lbl2.setText(" File 2: " + File2.getName());
lbl3.setText(" Union: File 3 ");
现在的输出是:
文件1:first.txt
文件2:second.txt
Union:File 3
我想得到的只是一行:
联盟:文件3(first.txt + second.txt)
谢谢
答案 0 :(得分:1)
希望我能够很好地理解这个问题。如果您的意思是以您编写的格式组合文件名:
lbl3.setText(" Union: File 3 (" + File1.getName() + "+" + File2.getName() + ")");
答案 1 :(得分:1)
尼尔是对的!....
lbl3.setText(" Union: File 3 (" + File1.getName() + "+" + File2.getName() + ")");
会为你效劳。