码迷,mamicode.com
首页 > 移动开发 > 详细

Android 系统时间

时间:2016-04-09 09:18:07      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

package com.tv.ui.metro.utils;

import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;

/**
* Created by Administrator on 16-3-31.
*/
public class DataUtil {
public static char[] getChars(byte[] bytes) {
Charset cs = Charset.forName("GBK");
ByteBuffer bb = ByteBuffer.allocate(bytes.length);
bb.put(bytes);
bb.flip();
CharBuffer cb = cs.decode(bb);
return cb.array();
}

public static char[] convertBtoC(byte[] bytes) {
char[] r = new char[0];
try {
r = new String(bytes, 0, bytes.length, "GBK").toCharArray();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} finally {
return r;
}
}
}

Android 系统时间

标签:

原文地址:http://www.cnblogs.com/----------/p/5370626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!