我通常不会在这里提问,但我很难过。我在Java应用程序中有一个JLabel,其长度相当长。无论我尝试什么,Java都不会将此文本包装到下一行。我做过研究,每个人都告诉我把HTML标签放在它周围,但是当我尝试我的WHOLE GUI停止工作时。这是一个学校项目!非常感谢所有帮助!
下面是一些代码:(这是一个由主方法暗示的类文件)
import javax.swing.*;
import java.awt.event.*;//needed for button listeners
import java.awt.*;//Layout class
public class gui extends JFrame implements SwingConstants
{
//Arrays
public JPanel[] panels = new JPanel[6];
public JPanel[] nested_panels = new JPanel[6];
public JLabel[] productDescriptions = new JLabel[6];
public product[] home_product_array = new product[6];
public JLabel[] productTitles = new JLabel[6];
public JLabel[] productPrices = new JLabel[6];
public JButton[] buttons = new JButton[6];
//Constants
final int WINDOW_WIDTH = 1000;
final int WINDOW_HEIGHT = 800;
//Main Window
public JFrame mainWindow;
/*
Constructor
*/
public gui(){
//main window
JFrame mainWindow = new JFrame("Clothes 4 Sale");
//set layout
mainWindow.setLayout(new GridLayout(2,3));
//title of window
mainWindow.setTitle("Clothes 4 Sale");
//size of window
mainWindow.setSize(WINDOW_WIDTH,WINDOW_HEIGHT);
//Close Button
mainWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//inititate window
mainWindow.setVisible(true);
//pull first title
productList product_list = new productList();
home_product_array = product_list.get_product_array();
for(int i=0;i<6;i++){
//print whole array
System.out.println(home_product_array[i].get_product_title());
System.out.println(home_product_array[i].get_product_description());
System.out.println(home_product_array[i].get_product_price_string());
//
productTitles[i] = new JLabel(home_product_array[i].get_product_title());
productDescriptions[i] = new
JLabel(home_product_array[i].get_product_description());
productPrices[i] = new
JLabel(home_product_array[i].get_product_price_string());
productPrices[i].setForeground(Color.GREEN);
panels[i] = new JPanel();
panels[i].setLayout(new BorderLayout(5,10));
panels[i].add(productTitles[i], BorderLayout.NORTH);
panels[i].add(productDescriptions[i], BorderLayout.CENTER);
nested_panels[i] = new JPanel();
nested_panels[i].add(productPrices[i]);
buttons[i] = new JButton("Add To Cart");
nested_panels[i].add(buttons[i]);
panels[i].add(nested_panels[i], BorderLayout.SOUTH);
mainWindow.add(panels[i]);
}//for loop
/*
*/
}//End of constructor
}//end of class file
答案 0 :(得分:0)
有些图书馆支持多行标签,但对于学校项目,您可能确实应该使用HTML。
你可以使用这样的东西,它将包装单词并尊重换行符(原始文本中的换行符):
/*...*/ new JLabel(asHtml(someMultilineTextString));
/*...*/
private String asHtml(String text) {
return "<HTML>" + text.replace("\n", "<br>") + "</HTML>";
}
编辑:再次,这是一个学校项目。对于真实世界的程序,您可以使用库,或者至少可以使用换行符(也可以使用库)。