Привет, у меня есть одна проблема, я использую jsch для подключения через ssh, например, к одному устройству, мой код работает, но с использованием интегрированного имени пользователя, пароля и хоста. Я хочу создать активность там, написать имя пользователя, пароль и хост, а после этого подключиться и сделатькакая-то команда, например "reboot" ... когда я набираю ip adpress в поле edittext, получаю данные оттуда, где не зафиксирован ip, я думаю, вы можете помнить меня и извините за мой плохой английский :) это мой код >>
Activity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ssh);
Toolbar mToolbar = (Toolbar) findViewById(R.id.toolbar);
mToolbar.inflateMenu(R.menu.main_menu);
setSupportActionBar(mToolbar);
}
@SuppressLint("StaticFieldLeak")
public void onClick11 (View v) {
new AsyncTask<Integer, Void, Void>(){
@Override
protected Void doInBackground(Integer... params) {
try {
executeSSHcommand();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}.execute(1);
}
@SuppressLint("StaticFieldLeak")
public void onClickct (View v) {
new AsyncTask<Integer, Void, Void>(){
@Override
protected Void doInBackground(Integer... params) {
try {
Compliancetest();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}.execute(1);
}
public void executeSSHcommand(){
String user = "user";
String password = "user";
String host = "192.168.1.1";
int port=22;
try{
JSch jsch = new JSch();
Session session = jsch.getSession(user, host, port);
session.setPassword(password);
session.setConfig("StrictHostKeyChecking", "no");
session.setTimeout(10000);
session.connect();
ChannelExec channel = (ChannelExec)session.openChannel("exec");
channel.setCommand("reboot");
channel.connect();
channel.disconnect();
}
catch(JSchException e){
}
}
public void Compliancetest(){
String user = "user";
String password = "user";
String host = "192.168.1.1";
int port=22;
try{
JSch jsch = new JSch();
Session session = jsch.getSession(user, host, port);
session.setPassword(password);
session.setConfig("StrictHostKeyChecking", "no");
session.setTimeout(10000);
session.connect();
ChannelExec channel = (ChannelExec)session.openChannel("exec");
channel.setCommand("reboot");
channel.connect();
channel.disconnect();
}
catch(JSchException e){
}
}
и моя активность.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar">
</include>
<EditText
android:id="@+id/ip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:hint="IP Address" />
<EditText
android:id="@+id/uname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:hint="Username" />
<EditText
android:id="@+id/pw"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPassword"
android:hint="Password" />
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:onClick="onClick11"
android:text="@string/command" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:onClick="onCommand"
android:text="@string/reboot" />