Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过按下按钮来增加文本字段中的字母。就像如果文本字段是“A”,那么在我按下按钮后下一个字母应该是“B”。可能吗?
无需使用 Swing 等 (RTM) 进入 Java GUI,这里有一个线索:
System.out.println((char) ('A'+1));
输出 B
是的,您将获得当前字符的键码,删除该字符,将键码加一并创建该字符。