Convert JTextField input into an Integer

后端 未结 4 920
我寻月下人不归
我寻月下人不归 2021-01-01 05:47

I am new to JAVA, I am trying to convert an input from a JTextField into an integer, I have tried loads of options but nothing is working, the eclipse is always giving me an

4条回答
  •  别那么骄傲
    2021-01-01 06:34

    I've implemented number fields based on JFormattedTextField.

    They also support a min and a max value.

    Maybe you find them useful (the library is open source):

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JRealNumberField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JDoubleField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JFloatField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedRealNumberField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedDoubleField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedFloatField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JWholeNumberField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JByteField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JIntegerField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLongField.html

    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JShortField.html

    Tutorial:

    http://softsmithy.sourceforge.net/lib/docs/tutorial/swing/number/index.html

    Homepage:

    http://www.softsmithy.org

    Download:

    http://sourceforge.net/projects/softsmithy/files/softsmithy/

    Maven:

      
        org.softsmithy.lib  
        lib-core  
        0.1  
      
    

提交回复
热议问题