JTextField:避免显示“,”在数字上

发布于 2024-11-16 09:11:26 字数 359 浏览 4 评论 0原文

我正在寻找比我目前拥有的解决方案更好的解决方案:

我有一个文本字段,我在其中读取和正确的数字:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╰つ倒转 2024-11-23 09:11:26

如果我理解您的需求,我认为您应该使用 JFormattedTextField 以获得干净的解决方案。看一下这个教程

If I understood your needs, I think you should use a JFormattedTextField for a clean solution. Have a look at this tutorial .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文