Run echo commands for updating sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq by using filesystem in javacode program for un-rooted Android Devices but i am able to read that file but notable to override that file
If i tried through terminal with root acces in my ubuntu machine same "echo 50000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq" is working fine
please help me any one
import android.app.Activity;
import android.os.Bundle;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.Toast;
public class Board_test_new2Activity extends Activity {
Button b1, b2;
CheckBox chkbox;
private String CPU_File = "/sys/devices/system/cpu/cpu0/cpufreq";
private String mydir = "";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.cpuinfo);
b1 = (Button) findViewById(R.id.ReadData);
b1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String s = readData();
}
});
b2 = (Button) findViewById(R.id.WriteData);
b2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String s = writeData();
}
});
}
private String readData() {
String cpuMin = readFile(CPU_File + "/cpuinfo_min_freq", true);
String cpuMax = readFile(CPU_File + "/cpuinfo_max_freq", true);
String scaleMin = readFile(CPU_File + "/scaling_min_freq", true);
String scaleMax = readFile(CPU_File + "/scaling_max_freq", true);
String governor = readFile(CPU_File + "/scaling_governor", false);
toastMessage("min cpu " + cpuMin + "cpu max " + cpuMax);
toastMessage("scaleMin cpu " + scaleMin + "scaleMax " + scaleMax
+ "governor " + governor);
return null;
}
private void toastMessage(String string) {
Toast.makeText(this, string, 0).show();
}
private static String readFile(String fname, boolean freq) {
File f = new File(fname);
if (f.exists() && f.isFile() && f.canRead()) {
BufferedReader reader = null;
String line;
try {
reader = new BufferedReader(new InputStreamReader(
new FileInputStream(f)), 32);
line = reader.readLine();
if (line != null) {
if (freq) {
return String
.valueOf(Long.parseLong(line.trim()) / 1000);
} else {
return line.trim();
}
}
} catch (Exception e) {
Log.e(Board_test_new2Activity.class.getName(),
e.getLocalizedMessage(), e);
} finally {
if (reader != null) {
try {
reader.close();
reader = null;
} catch (IOException ie) {
Log.d(Board_test_new2Activity.class.getName(),
"IOException read file: ");
}
}
}
} else {
Log.d(Board_test_new2Activity.class.getName(), "Cannot read file: "
+ fname);
}
return null;
}
public String writeData() {
String cmd = "echo 500000 > " + CPU_File + "/scaling_min_freq" + "\n"
+ execCommandLine(cmd);
return null;
}
public void execCommandLine(String command) {
Runtime runtime = Runtime.getRuntime();
Process proc = null;
OutputStreamWriter osw = null;
try {
proc = runtime.exec("su");
osw = new OutputStreamWriter(proc.getOutputStream());
osw.write(command);
osw.flush();
osw.close();
} catch (IOException ex) {
Log.e("execCommandLine()", "Command resulted in an IO Exception: "
+ command);
return;
} finally {
if (osw != null) {
try {
osw.close();
} catch (IOException e) {
Log.e("IOException");
}
}
}
try {
proc.waitFor();
} catch (InterruptedException e) {
}
if (proc.exitValue() != 0) {
Log.e("execCommandLine()", "Command returned error: " + command
+ "\n Exit code: " + proc.exitValue());
}
}
}