设备信息

// 型号
android.os.Build.MODEL

// Android 版本
android.os.Build.VERSION.RELEASE

// 版本号
android.os.Build.DISPLAY

// 内核版本
private TextView text_kernel_version;
		Process process = null;
		try {
			process = Runtime.getRuntime().exec("cat /proc/version");
		} catch (IOException e) {
			e.printStackTrace();
		}
		InputStream  outs = process.getInputStream();
		InputStreamReader isrout = new InputStreamReader(outs);
		BufferedReader brout = new BufferedReader(isrout,8*1024);
		String result = "";
		String line;
		
		try {
			while ((line = brout.readLine()) != null) {
				result += line;
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
		
		if(!"".equals(result)){
			String Keyword = "version ";
			int index = result.indexOf(Keyword);
			line = result.substring(index + Keyword.length());
			index = line.indexOf(" ");
			String lsd = line.substring(result.indexOf("#1")+1);
			text_kernel_version.setText(line.substring(0,index)+"\r\n"+android.os.Build.USER+"@"+android.os.Build.HOST+" #1"+"\r\n"+lsd);
		}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值