尽管在 Swing 组件中使用 String.format 格式化摆动
Formatting wiggle inspite of using String.format in Swing component
我正在使用
String.format("w:%5d h:%5d n:%5d",a,b,c);
当鼠标移到 JFrame
上时,在 JLabel
中显示 space 填充的 int
s。考虑到它可能是一个标签工件,我添加了一个 JFormattedTextField
作为很好的衡量标准,但它遇到了同样的问题:文本随着坐标从一位数变为多位数而四处乱舞。如何解决?
这是一些示例代码
package all.code.classes;
import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
public class rough3 {
static String toString(int a,int b,int c)
{
return String.format("w:%5d h:%5d n:%5d",a,b,c);
}
JFormattedTextField ftf=new JFormattedTextField();
JLabel la=new JLabel();
static int x,y;
public static void main(String[] args) {
SwingUtilities.invokeLater(()-> {
rough3 xx = new rough3();
xx.la.setHorizontalAlignment(SwingConstants.RIGHT);
JFrame fr = new JFrame();
fr.setLayout(new BorderLayout());
fr.getContentPane().add(xx.ftf, BorderLayout.SOUTH);
fr.getContentPane().add(xx.la, BorderLayout.NORTH);
fr.setSize(500, 100);
fr.setVisible(true);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseMoved(MouseEvent e) {
super.mouseMoved(e);
x = e.getX();
y = e.getY();
xx.ftf.setText(xx.toString(x,y,1));
xx.la.setText(xx.toString(x,y,135));
}
});
});
}
}
您应该添加这些行。
xx.ftf.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 12));
xx.la.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 12));
我正在使用
String.format("w:%5d h:%5d n:%5d",a,b,c);
当鼠标移到 JFrame
上时,在 JLabel
中显示 space 填充的 int
s。考虑到它可能是一个标签工件,我添加了一个 JFormattedTextField
作为很好的衡量标准,但它遇到了同样的问题:文本随着坐标从一位数变为多位数而四处乱舞。如何解决?
这是一些示例代码
package all.code.classes;
import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
public class rough3 {
static String toString(int a,int b,int c)
{
return String.format("w:%5d h:%5d n:%5d",a,b,c);
}
JFormattedTextField ftf=new JFormattedTextField();
JLabel la=new JLabel();
static int x,y;
public static void main(String[] args) {
SwingUtilities.invokeLater(()-> {
rough3 xx = new rough3();
xx.la.setHorizontalAlignment(SwingConstants.RIGHT);
JFrame fr = new JFrame();
fr.setLayout(new BorderLayout());
fr.getContentPane().add(xx.ftf, BorderLayout.SOUTH);
fr.getContentPane().add(xx.la, BorderLayout.NORTH);
fr.setSize(500, 100);
fr.setVisible(true);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseMoved(MouseEvent e) {
super.mouseMoved(e);
x = e.getX();
y = e.getY();
xx.ftf.setText(xx.toString(x,y,1));
xx.la.setText(xx.toString(x,y,135));
}
});
});
}
}
您应该添加这些行。
xx.ftf.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 12));
xx.la.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 12));