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.
私の問題は簡単です:
「全選択」したい。これは、Linux や Windows と比較して、macosx では異なる方法で行われます。
Keys.chord(Keys.COMMAND, "a")
対
Keys.chord(Keys.CONTROL, "a")
Javaでは、これに対する回避策はほとんどありません。
String os = System.getProperty("os.name"); if (os.equals("WINDOWS")){ Keys.chord(Keys.CONTROL, "a"); }else{ Keys.chord(Keys.COMMAND, "a"); }
基本的に-私はOSをどこで実行し、それに応じて動作しますか