Java 读取二进制文件 ,读八个字节,然后转换成一个double,怎么写? 我知道怎么读四个字节转成int的。

读四个字节,然后转int;publicintreadBigInt(InputStreamin)throwsIOException{intch1=in.read();int... 读四个字节,然后转int;
public int readBigInt(InputStream in)throws IOException{
int ch1 = in.read();
int ch2 = in.read();
int ch3 = in.read();
int ch4 = in.read();
if ((ch1 | ch2 | ch3 | ch4) < 0)
throw new EOFException();
return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4 << 0));
}
请大神指点,帮我写个读八个字节,然后转double的方法。 移位操作实在不熟啊。
展开
 我来答
百度网友b24b0b709
2013-05-23 · TA获得超过210个赞
知道小有建树答主
回答量:99
采纳率:0%
帮助的人:98.2万
展开全部
先申明一下你的前提是二进制文件,读取8个字节,那么可以这么做:
public double readDouble(InputStream in) throws IOException {
byte[] tmp = new byte[8 * 8];//8个字节长度
if (in != null && (in.read(tmp) != -1)) {
String str = new String(tmp);
return Double.valueOf(str);
}
return -1;
}
更多追问追答
追问
为什么是byte[8*8]?
好的,你的方法我试一下。另外,你会不会用移位的方法来转Double? 就像我上面的用移位的方法来转Int。
追答
哦,不好意思,我写错了
基本数据类型double占用8个字节,应该是
public double readDouble(InputStream in) throws IOException {
byte[] tmp = new byte[8];//8个字节长度
if (in != null && (in.read(tmp) != -1)) {
String str = new String(tmp);
return Double.valueOf(str);
}
return -1;
}
不会用移位的方法转换,java有封装好的算法,为什么要自己写呢?还有,如果自己写的话,那么多种类型转换,每个都要去实现一遍吗?没必要
llei32wang
推荐于2016-06-12 · TA获得超过2736个赞
知道大有可为答主
回答量:1478
采纳率:60%
帮助的人:1400万
展开全部
一样的啊
public double readBigInt(InputStream in)throws IOException{
int ch=0;
double d=0;
for(int i=8;i>0;i--){
ch=in.read();
if(ch<0)
throw new EOFException();
d=d+(ch<<8*(i-1));
}
return d;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式