Inhalt von Textarea holen



  • Hallo auch!

    Wie krieg ich den Inhalt einer Textarea?
    Bzw. wie kann ich ihn woandershin übergeben?



  • getText

    public String getText()

    Returns the text contained in this TextComponent. If the underlying document is null, will give a NullPointerException. Note that text is not a bound property, so no PropertyChangeEvent is fired when it changes. To listen for changes to the text, use DocumentListener.

    Returns:
    the text
    Throws:
    NullPointerException - if the document is null
    See Also:
    setText(java.lang.String)

    getSelectedText

    public String getSelectedText()

    Returns the selected text contained in this TextComponent. If the selection is null or the document empty, returns null.

    Returns:
    the text
    Throws:
    IllegalArgumentException - if the selection doesn't have a valid mapping into the document for some reason
    See Also:
    setText(java.lang.String)

    OT: wie ich bereits in Deinem weiteren Posting geschrieben habe, sieht man sowas auf den ersten Blick in der Javadoc. Jeder hilft Dir hier sicherlich gerne weiter, aber die Fragen sind zum teil so trivial, auf die kommst Du selbst wenn Du Dich selbst dammit auseinander setzt. ➡ RTFM



  • Mittlerweile hab ich getText() auch gefunden.
    Und mein Programm funktioniert soagr, wie es soll.
    😃 😃 😃 😃 😃 😃 😃 😃 😃 😃



  • guck dir denoch lieber die object klasse an 🙂 die hat die "wichtigesten" methoden drin


Anmelden zum Antworten