我被分配去创建一个程序,该程序使用 File Writer类来写一个带有乘法表的文本文件。
执行程序时,必须显示带有表的JFrame窗口。
为此,我编写了三个类:
MainTp 来运行程序。
JFrame 就是窗口本身。
FileWriteTp ,用于写入乘法表。在这里,我使用了for循环来编写表格。
一切正常。除了一件事。当我运行程序时,我看到以下输出,其中有些我不喜欢。
输出
如您所见,数字并没有很好地对齐,我想在输出中得到如下信息:
在这里您可以看到它们对齐得很好
经过几个小时的研究,我注意到可以使用 format 修复此问题。问题是在这种情况下我不知道如何使用它。
如果有人可以帮助我解决此问题,我将不胜感激。
此外,我想知道是否可以在此表中添加列线,行线和某些颜色,以使其看起来更好以及如何实现。
您在这里有我的源代码
FileWriteTp类
import java.io.FileWriter;
public class FileWriteTp {
private String pitagora =""; //crea uno "spazio" fra i numeri della tabella
public FileWriteTp() {
try {
FileWriter fw=null;
fw = new FileWriter("tavolapit.txt", false);//con il parametro
//false il file viene aperto in scrittura e comporta la cancellazione
//di un eventuale file preesistente
for(int i=1;i<11; i++) { //creo il primo ciclo per i numeri da 1 a 10
for(int x= 1; x<11; x++) {//creo secondo ciclo per i numeri da 1 a 10
//che vanno a moltiplicare i numeri del primo ciclo
fw.write(i*x +" "); //istruzione che permette l'esecuzione della
//moltiplicazione fra i numeri del primo ciclo(i)e i numeri del
//secondo ciclo(x)
pitagora += i*x + " ";
}
fw.write(System.lineSeparator());//istruzioni che permettono
//l'incolonnamento in verticale e orizzontale
pitagora += "\r\n\n";
}
fw.close(); // chiusura dello stream
}
catch(Exception e) {
e.printStackTrace();
}
}
public String getPitagora() { //metodo che permette il valore di "pitagora"e
//la visualizzazione dell'intera tabella
return String.format(pitagora);
}
}
JFrame类
import java.awt.*;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingConstants;
import javax.swing.border.EmptyBorder;
public class Jframe extends JFrame{
public Jframe()
{
super("Tavola Pitagorica"); //assegna il nome alla finestra
setBounds(200, 150, 650, 550);//imposta le misure per la finestra
setDefaultCloseOperation(EXIT_ON_CLOSE);
setResizable(false);
Container c = getContentPane(); //contenitore finestra
FileWriteTp fw = new FileWriteTp(); //oggetto per fileWriteTp
JLabel label1 = new JLabel("Tavola Pitagorica");
label1.setFont(new Font ("Helvetica",Font.BOLD,22));
label1.setHorizontalAlignment(SwingConstants.CENTER);
label1.setBorder(new EmptyBorder (20,0,0,0));
label1.setForeground(Color.BLUE);
JTextArea textArea1 = new JTextArea(fw.getPitagora()); //area di testo
textArea1.setBorder(new EmptyBorder (50,70,0,0));
textArea1.setFont(new Font ("Helvetica",Font.PLAIN,16));
c.add(textArea1, BorderLayout.CENTER); //aggiunge l'area di testo
c.add(label1,BorderLayout.NORTH);
c.setBackground(Color.white);
//all'interno del contenitore impostando il layout al centro
主班
public class MainTp {
public static void main(String[] args) throws Exception {
Jframe finestra = new Jframe();
finestra.setVisible(true);//permette la visibilità della finestra
}
}
非常感谢您
答案 0 :(得分:2)
您“可能”实现此目标的几种方法。最简单的解决方案是使用nil
和固定宽度的字体(由camickr建议)
String.format
现在,当然,如果您真的不想使用固定宽度的字体,则可以使用基于html的表。
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.Font;
import java.util.StringJoiner;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame();
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
public TestPane() {
setLayout(new BorderLayout());
JTextArea ta = new JTextArea();
ta.setFont(new Font("Monospaced", Font.PLAIN, 12));
ta.setText(buildTable());
ta.setEditable(false);
add(ta);
}
protected String buildTable() {
StringJoiner sj = new StringJoiner(System.lineSeparator());
for (int i = 1; i < 11; i++) {
StringBuilder sbRow = new StringBuilder(128);
for (int x = 1; x < 11; x++) {
int value = i * x;
sbRow.append(String.format("%-8d", value));
}
sj.add(sbRow.toString());
}
return sj.toString();
}
}
}