所以我试图连接到将要获取模拟数据的设备(Red Pitaya)。它设置了控制设备的scpi命令。我可以通过labview和使用putty来控制这些。
我正在尝试编写和Android应用程序,可以访问设备scpi服务器并向其发送命令,以便设备完成。
设备的编程方式是首先必须使用SSH连接连接到服务器,使用JSch我没有问题,从那里你可以发送命令来启动scpi服务器并打开连接。
现在这是我正在努力的一点,我不明白为什么,当SCPI服务器启动时,它通过设备的IP和5000的原始端口访问,但我似乎无法写一段代码连接到此并执行SCPI命令。我不确定这是连接还是我发送数据的方式。
这是代码
public class rp_command extends AsyncTask<Void,Void, Void> {
String ipAddress;
int port;
String response = "";
TextView textResponse;
rp_command(String address, int rp_port, TextView textResponse){
ipAddress = address;
port = rp_port;
this.textResponse = textResponse;
}
@Override
protected Void doInBackground(Void...arg0){
Socket socket = null;
try{
socket = new Socket(ipAddress, port);
DataOutputStream out = new DataOutputStream(socket.getOutputStream());
out.writeByte(1);
out.writeUTF("DIG:PIN LED2,1");
out.flush();
} catch (UnknownHostException e){
e.printStackTrace();
response = "UnknownHostException:" + e.toString();
} catch (IOException e){
e.printStackTrace();
response = "IOException:" + e.toString();
} finally {
if (socket != null) {
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}return null;
}
@Override
protected void onPostExecute(Void result){
textResponse.setText(response);
super.onPostExecute(result);
}
}
如果有人有任何建议,将不胜感激 感谢
答案 0 :(得分:0)
让它在这里工作我相信问题是由于没有结束命令\ r \ n在字符串的末尾这里是工作测试代码,如果有人感兴趣。这是用于发送不接收的字符串。
public class MainActivity extends AppCompatActivity {
Socket s = new Socket();
PrintWriter s_out;
BufferedReader s_in;
String out = null;
public void sendCommand (String command){
try {
s_out = new PrintWriter(s.getOutputStream(), true);
s_out.println(command);
}catch (IOException e){
System.out.println(e);
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button LED_ON, LED_OFF;
LED_ON = (Button)findViewById(R.id.button);
LED_OFF = (Button)findViewById(R.id.button2);
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
try{
s.connect(new InetSocketAddress("192.168.0.104", 5000));
}catch (IOException e){
System.out.println(e);
}
LED_ON.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
sendCommand("DIG:PIN LED2,1\r\n");
}
});
LED_OFF.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
sendCommand("DIG:PIN LED2,0\r\n");
}
});
}
}
当使用按钮启动命令时,我注意到如果你在那里编写send命令代码而不是单独的函数,应用程序会超时并崩溃。