资源简介
Bitmap类源文件 http://download.csdn.net/detail/ccjjxx001/5049365
用于数据转换的补充类 大部分源码来自于网上 自己只有小的修改
代码片段和文件信息
/*
* Copyright (C) 2013 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwindx.examples;
/**
* ��ʽת��
* Java��һЩwindows���������c��c++��delphi��д������������ͨѶʱ����Ҫ������Ӧ��ת��
* �ߡ����ֽ�֮���ת��
* windows���ֽ���Ϊ���ֽڿ�ͷ
* linuxunix���ֽ���Ϊ���ֽڿ�ͷ
* java������ƽ̨�仯�����Ǹ��ֽڿ�ͷ
*/
public class FormatTransfer
{
/**
* ��intתΪ���ֽ���ǰ�����ֽ��ں��byte����
* @param n int
* @return byte[]
*/
public static byte[] toLH(int n) {
byte[] b = new byte[4];
b[0] = (byte) (n & 0xff);
b[1] = (byte) (n >> 8 & 0xff);
b[2] = (byte) (n >> 16 & 0xff);
b[3] = (byte) (n >> 24 & 0xff);
return b;
}
/**
* ��intתΪ���ֽ���ǰ�����ֽ��ں��byte����
* @param n int
* @return byte[]
*/
public static byte[] toHH(int n) {
byte[] b = new byte[4];
b[3] = (byte) (n & 0xff);
b[2] = (byte) (n >> 8 & 0xff);
b[1] = (byte) (n >> 16 & 0xff);
b[0] = (byte) (n >> 24 & 0xff);
return b;
}
/**
* ��shortתΪ���ֽ���ǰ�����ֽ��ں��byte����
* @param n short
* @return byte[]
*/
public static byte[] toLH(short n) {
byte[] b = new byte[2];
b[0] = (byte) (n & 0xff);
b[1] = (byte) (n >> 8 & 0xff);
return b;
}
/**
* ��shortתΪ���ֽ���ǰ�����ֽ��ں��byte����
* @param n short
* @return byte[]
*/
public static byte[] toHH(short n) {
byte[] b = new byte[2];
b[1] = (byte) (n & 0xff);
b[0] = (byte) (n >> 8 & 0xff);
return b;
}
/**
* ����intתΪ���ֽ���ǰ�����ֽ��ں��byte����
public static byte[] toHH(int number) {
int temp = number;
byte[] b = new byte[4];
for (int i = b.length - 1; i > -1; i--) {
b = new Integer(temp & 0xff).byteValue();
temp = temp >> 8;
}
return b;
}
public static byte[] IntToByteArray(int i) {
byte[] abyte0 = new byte[4];
abyte0[3] = (byte) (0xff & i);
abyte0[2] = (byte) ((0xff00 & i) >> 8);
abyte0[1] = (byte) ((0xff0000 & i) >> 16);
abyte0[0] = (byte) ((0xff000000 & i) >> 24);
return abyte0;
}
*/
/**
* ��floatתΪ���ֽ���ǰ�����ֽ��ں��byte����
*/
public static byte[] toLH(float f) {
return toLH(Float.floatToRawIntBits(f));
}
/**
* ��floatתΪ���ֽ���ǰ�����ֽ��ں��byte����
*/
public static byte[] toHH(float f) {
return toHH(Float.floatToRawIntBits(f));
}
/**
* ��StringתΪbyte����
*/
public static byte[] stringToBytes(String s int length) {
while (s.getBytes().length < length) {
s += “ “;
}
return s.getBytes();
}
/**
* ���ֽ�����ת��ΪString
* @param b byte[]
* @return String
*/
public static String bytesToString(byte[] b) {
StringBuffer result = new StringBuffer(““);
int length = b.length;
for (int i=0; i result.append((char)(b[i] & 0xff));
}
return result.toString();
}
/**
* ���ַ�ת��Ϊbyte����
* @param s String
* @return byte[]
*/
public static byte[] stringToByte
- 上一篇:基于java语言版的银行信息管理系统
- 下一篇:JAVA题目
相关资源
-
Android ja
vasc ript打开webview图片、支 - 基于Java的网络教学系统
- 超市进销存系统需求分析与设计实现
- JAVA3D官方
- 基于java的汽车租赁管理系统
- 丰巢科技Java面试题
- JAVA mysql web 图书管理系统
- java操作Excel需要的jar包
- Java实现拼图游戏源码
- java进销存管理系统源码
- Java+GUI编程实现“21点”游戏(含文档
- 2019年最新版修订版Java程序员面试宝典
- 2019年最新版修订版Java程序员面试宝典
- 精通Java并发编程第2版.zip
- kafka java依赖包
- Maven: The Definitive Guide pdf
- Jsp仿淘宝网项目源代码
- 杨晓峰-java核心技术36讲(完结.pdf
- java源代码,java源代码
- Java代码 MySql导出到SqlLite
- JAVA商品库存管理系统
- jsp+servlet+javabean实现数据库增删改查操
- JAVAEE6 API 文档
- java开发的电影院管理系统
- Lucene搜索引擎 JSP + JAVA
- Java 停车场管理系统_JAVA___Sevrlet停车管
- Java开发的实验教学资源管理系统
- 一个用Myeclipse做的java的博客管理系统
- Java 3D 开发包
- 物业管理系统完整版带数据库文件
评论
共有 条评论