当前位置:  编程技术>移动开发

android byte[] 和short[]转换的方法代码

    来源: 互联网  发布时间:2014-10-23

    本文导语:  1,工具代码 代码如下:public class BytesTransUtil {  private String TAG = "BytesTransUtil"; private static BytesTransUtil instance = null;  private BytesTransUtil() {  // Log.i(TAG, "instance BytesTransUtil"); }  public static BytesTransUtil getInstance() {  if (instance == null)...

1,工具代码

代码如下:

public class BytesTransUtil {

 private String TAG = "BytesTransUtil";
 private static BytesTransUtil instance = null;

 private BytesTransUtil() {
  // Log.i(TAG, "instance BytesTransUtil");
 }

 public static BytesTransUtil getInstance() {
  if (instance == null) {
   instance = new BytesTransUtil();
  }
  return instance;
 }

 public boolean testCPU() {
  if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN) {
   // System.out.println("is big ending");
   return true;
  } else {
   // System.out.println("is little ending");
   return false;
  }
 }

 public byte[] getBytes(short s, boolean bBigEnding) {
  byte[] buf = new byte[2];
  if (bBigEnding)
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x00ff);
    s >>= 8;
   }
  else
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x00ff);
    s >>= 8;
   }
  return buf;
 }

 public byte[] getBytes(int s, boolean bBigEnding) {
  byte[] buf = new byte[4];
  if (bBigEnding) {
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x000000ff);
    s >>= 8;
   }
  } else {
   System.out.println("1");
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x000000ff);
    s >>= 8;
   }
  }
  return buf;
 }

 public byte[] getBytes(long s, boolean bBigEnding) {
  byte[] buf = new byte[8];
  if (bBigEnding)
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x00000000000000ff);
    s >>= 8;
   }
  else
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x00000000000000ff);
    s >>= 8;
   }
  return buf;
 }

 public short getShort(byte[] buf, boolean bBigEnding) {
  if (buf == null) {
   throw new IllegalArgumentException("byte array is null!");
  }
  if (buf.length > 2) {
   throw new IllegalArgumentException("byte array size > 2 !");
  }
  short r = 0;
  if (bBigEnding) {
   for (int i = 0; i < buf.length; i++) {
    r


    
 
 

您可能感兴趣的文章:

  • Android Bitmap和Drawable相互转换的简单代码
  • 基于Android中dp和px之间进行转换的实现代码
  • android将图片转换存到数据库再从数据库读取转换成图片实现代码
  • android图片转换器示例
  • Android数据类型之间相互转换系统介绍
  • Android-如何将RGB彩色图转换为灰度图方法介绍
  • Android 图像处理(类型转换,比例缩放,倒影,圆角)的小例子
  • Android提高之使用NDK把彩图转换灰度图的方法
  • Android下保存简单网页到本地(包括简单图片链接转换)实现代码
  • android 自定义Android菜单背景的代码
  • android panellistview 圆角实现代码
  • android 简单图片动画播放的实例代码
  • android网络编程之android连接网络的简单示例代码
  • 用ubuntu下载的android源代码不知下到哪去了
  • Android发送短信功能代码
  • android WakeLock使用方法代码实例
  • android自动安装apk代码实例(不使用apk安装器安装)
  • 控制Android LED灯颜色的代码实例
  • android通过bitmap生成新图片关键性代码
  • android 跳转进市场的实现代码
  • Android键盘显示与隐藏代码
  • Android中监听系统网络连接打开或者关闭的实现代码
  • Android 显示和隐藏输入法实现代码
  • Android点亮屏幕或屏幕解锁和锁定以及其他相关权限实现代码
  • Android中Root权限获取的简单代码
  • android downsample降低音频采样频率代码
  • android连接wifi时获取广播地址代码
  • android layout 按比例布局的代码
  • Android应用开发中模拟按下HOME键的效果(实现代码)
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 申请Android Map 的API Key(v2)的最新申请方式(SHA1密钥)
  • Android瀑布流实例 android_waterfall
  • Android开发需要的几点注意事项总结
  • Android系统自带样式 (android:theme)
  • android 4.0 托管进程介绍及优先级和回收机制
  • Android网络共享软件 Android Wifi Tether
  • Android访问与手机通讯相关类的介绍
  • Android 图标库 Android GraphView
  • Android及andriod无线网络Wifi开发的几点注意事项
  • 轻量级Android开发工具 Android Tools
  • Android 2.3 下StrictMode介绍
  • Android 开发环境 Android Studio
  • IDEA的Android开发插件 idea-android
  • Android手机事件提醒 Android Notifier
  • XBMC的Android客户端 android-xbmcremote
  • Android小游戏 Android Shapes
  • Android电池监控 Android Battery Dog
  • android开发:“android:WindowTitle”没有对应项no resource
  • Android 上类似IOS 的开关控件。 Android ToggleButton
  • Android 将 android view 的位置设为右下角的解决方法
  • Android 2D游戏引擎 Android Angle




  • 特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3