Java编写一个有两个文本框和一个按钮的应用程序在一个文本框输入一个字符串按回车或单击按钮,

另一个文本框都显示字符串中每个字符在Unicode表中的顺序位置。要用到awt和swing,高手帮忙下,谢谢!~!~... 另一个文本框都显示字符串中每个字符在Unicode表中的顺序位置。
要用到awt和swing,高手帮忙下,谢谢!~!~
展开
 我来答
fwmeng
2008-10-16 · TA获得超过166个赞
知道小有建树答主
回答量:174
采纳率:0%
帮助的人:198万
展开全部
这段应该符合你的要求

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;

import sun.io.ByteToCharConverter;
import sun.io.CharToByteConverter;

public class Test extends JFrame implements ActionListener {
JButton btn = new JButton("ok");
JTextField tf1 = new JTextField(20);
JTextField tf2 = new JTextField(20);

public Test() {
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel pn = new JPanel();
pn.add(tf1);
tf1.addActionListener(this);
pn.add(tf2);
this.getContentPane().add(pn, BorderLayout.CENTER);
this.getContentPane().add(btn, BorderLayout.SOUTH);
btn.addActionListener(this);
this.pack();
this.setVisible(true);
}

public void actionPerformed(ActionEvent e) {
String str=tf1.getText();
tf2.setText("");
try {
ByteToCharConverter converter = ByteToCharConverter
.getConverter("GB2312");
CharToByteConverter converter1 = CharToByteConverter
.getConverter("GB2312");
byte[] b =str.getBytes();
char[] c = new char[4];
c = converter.convertAll(b);
for (int i = 0; i < c.length; i++) {
tf2.setText(tf2.getText()+"\\u" + Integer.toHexString(c[i]));
}
} catch (Exception ex) {
ex.printStackTrace();
}

}

public static void main(String[] args) {
new Test();
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式