微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

详解Android获取系统内核版本的方法与实现代码

Android获取系统内核版本的方法

                这里主要实现获取Android Linux 内核的版本号,网上关于这类文章不是很多,这里记录下,希望能帮助到大家,

实现代码

public static String getKernelVersion() { 
  String kernelVersion = ""; 
  InputStream inputStream = null; 
  try { 
    inputStream = new FileInputStream("/proc/version"); 
  } catch (FileNotFoundException e) { 
    e.printstacktrace(); 
    return kernelVersion; 
  } 
  BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream),8 * 1024); 
  String info = ""; 
  String line = ""; 
  try { 
    while ((line = bufferedReader.readLine()) != null) { 
      info += line; 
    } 
  } catch (IOException e) { 
    e.printstacktrace(); 
  } finally { 
    try { 
      bufferedReader.close(); 
      inputStream.close(); 
    } catch (IOException e) { 
      e.printstacktrace(); 
    } 
  } 
 
  try { 
    if (info != "") { 
      final String keyword = "version "; 
      int index = info.indexOf(keyword); 
      line = info.substring(index + keyword.length()); 
      index = line.indexOf(" "); 
      kernelVersion = line.substring(0,index); 
    } 
  } catch (indexoutofboundsexception e) { 
    e.printstacktrace(); 
  } 
 
  return kernelVersion; 
} 

以上就是关于获取Android内核的办法,如有疑问请留言或者到本站社区交流讨论,共同进步,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐