package com.sinostride.smartcity.util;import java.io.UnsupportedEncodingException;/** * Created by lhd on 2016/10/12. * 基本類型轉換的工具類 */ public class Bas ...
package com.sinostride.smartcity.util;
import java.io.UnsupportedEncodingException;
/** * Created by lhd on 2016/10/12. * 基本類型轉換的工具類 */
public class BaseTypeConvertUtil {
/** * int轉String * * @param i 需要轉換的int * @param length 轉換後的String的長度 * @return 轉換後的String */ public static String int2String(int i, int length) { int abs = Math.abs(i); String str = abs + ""; if (str.length() < length && i >= 0) {
int digit = (length - str.length());
for (int j = 0; j < digit; j++) { str = "0" + str;
} } else if (str.length() < length && i < 0) { int digit = (length - str.length()) - 1; for (int j = 0; j < digit; j++) { str = "0" + str; } str = "-" + str; } return str; }
/** * int轉string 不限定轉換後的string的長度,並且去掉前邊多餘的0 * @param i 需要轉換的int * */ public static String int2String(int i){ int norm=i; String s=norm+""; return s; }
/** * int轉byte[] * * @param i 需要轉換的int * @return 轉換後的byte[]低位在前,高位在後 */ public static byte[] int2Bytes(int i) { byte[] b = new byte[4]; b[0] = (byte) (i & 0xff); b[1] = (byte) ((i >> 8) & 0xff);// 次低位 b[2] = (byte) ((i >> 16) & 0xff);// 次高位 b[3] = (byte) (i >>> 24);// 最高位,無符號右移。 return b; }
/** * byte數組轉int數組,本方法適用於(低位在前,高位在後)的順序 * * @param src byte數組 * @param offset 從數組的第offset位開始 * @return int數組 */ public static int[] bytes2Int(byte[] src, int offset) {
int[] value = new int[src.length / 4]; for (int i=0;i<src.length/4;i++) {
value[i] = (int) ((src[offset+ 4*i] & 0xFF) | ((src[offset + 1+4*i] & 0xFF) << 8) | ((src[offset + 2+4*i] & 0xFF) << 16) | ((src[offset + 3+4*i] & 0xFF) << 24)); } return value;
}
/** * byte數組轉成int數組,不指定開始轉換的位置 * * @param src 需要轉換的byte數組 * @return 轉換後的 int數組 * */ public static int[] bytes2Int(byte[] src) {
int[] value = new int[src.length / 4+1]; for (int i=0;i<src.length/4;i++) { value[i] = (int) ((src[0+i] & 0xFF) | ((src[1+i] & 0xFF) << 8) | ((src[2+i] & 0xFF) << 16) | ((src[3+i] & 0xFF) << 24)); }
return value;
} public static int bytesToInt(byte[] bytes){ int value=(int) ((bytes[0] & 0xFF) | ((bytes[1] & 0xFF) << 8) | ((bytes[2] & 0xFF) << 16) | ((bytes[3] & 0xFF) << 24)); return value; }
/** * String轉int * * @param s 需要轉換的String * @return 轉換後的int */ public static int string2Int(String s) { int i = Integer.valueOf(s).intValue(); return i; }
/** *string轉int * @param s 需要轉換的string * @param start 希望轉換的開始位置 * @return 轉換後的int */ public static int string2Int(String s,int start){ if(start<s.length()) { String value = s.substring(start); int i = Integer.valueOf(value); return i; }else { return 0; } }
/** *string轉換為int * @param s 需要轉換的string * @param start 轉換的開始位置 * @param