JTextField:避免显示“,”在数字上
我正在寻找比我目前拥有的解决方案更好的解决方案:
我有一个文本字段,我在其中读取和正确的数字:
textStiffness.setText((""+stiffness).replaceAll(",", ""));
并且
stiffness = Float.valueOf(s1.replaceAll(",", "")).floatValue();
她您可以看到我的问题和我的解决方法: 当我写入超过 999 的数字时,它会添加一个“,”符号,然后 Float.value(s) 方法无法读取该符号。
有什么想法吗?
贾森
I'm looking for a better solution than the one I currently have:
I have a textfield for which I read and right numbers in:
textStiffness.setText((""+stiffness).replaceAll(",", ""));
and
stiffness = Float.valueOf(s1.replaceAll(",", "")).floatValue();
and her you can see my problem and my work around:
When I write a number over 999 it adds a "," sign that then can't be read by the Float.value(s) method.
any ideas ?
Jason
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解您的需求,我认为您应该使用 JFormattedTextField 以获得干净的解决方案。看一下这个教程。
If I understood your needs, I think you should use a JFormattedTextField for a clean solution. Have a look at this tutorial .