Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo Zusammen!

ich habe ein PlainDocument, welches mir die Eingabe auf ein TextFeld überprüft des macht es auch fehlerfrei!, ich möchte jedoch schaffen das nur ein Punkt zu gelassen wird und ich hab leider keine Ahnung wie ich das anstellen soll (das PlainDocument hab ich mir so ausm Internet kopiert)

public class DecimalDocument extends javax.swing.text.PlainDocument{


    public DecimalDocument() {  }


    public void insertString(int offset, String str, javax.swing.text.AttributeSet a)

    throws javax.swing.text.BadLocationException {

        //Dezimaltrenner, je nach Land abfragen und einsetzen

        char decimalSeparator = (new java.text.DecimalFormatSymbols()).getDecimalSeparator();

        //Zeichenkette mit den gültigen Zeichen

        String valid = ".0123456789" + decimalSeparator;

        for (int i=0; i<str.length();i++) {

            if (valid.indexOf(str.charAt(i)) == -1) {

                return;

            }

            //Wichtig Aufruf der übergeordneten Methode

            super.insertString(offset, str, a);

        }

    }

}

Danke für eure Hilfe!

MfG

Saban

Hi!

erste mal Danke für deinen Tipp aber ich würde gerne wissen wie ich das PlainDocument richtig erweitern kann ;) ... kannst mir da auch vllt helfen?

MfG

Saban

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.