-1
私はselenium javaをSSH -ClientでAutoitXで使用しています。コードからstrをテキストファイルの文字列マシンの中で。宣言された文字列 "str"をマシンのテキストファイル内の文字列と比較するには
コード:
String str="abk123";
x.send("cat txt.txt"); //in this text we have 1 string
Thread.sleep(200);
robot.keyPress(java.awt.event.KeyEvent.VK_ENTER);
if (str==???) //(how can i use the string from the txt.txt file to compare?)
がどのように比較することtxt.txtファイルから文字列を使用できますか? Javaでファイルの読み取り概念を使用して
どうもありがとう
を使用して比較。 – ma3stro