我在这里搜索了一段时间,似乎没有什么能帮助我完成任务。我正在尝试手动转换其中包含二进制代码的int数组,执行十进制转换,然后将其转换为char以获取ascii等效项。我有一些东西开始,但当我打印出来时,我得到-591207182作为消息,这显然是不正确的。我的节目在下面。我在编写和理解Java方面相当新手,因此非常感谢最有效和易于理解的路线。
class DecodeMessage
{
public void getBinary(Picture secretImage)
{
Pixel pixelObject = null;
Color pixelColor = null;
int [] binaryInt = new int[secretImage.getWidth()];
int x = 0;
int redValue = 0;
while(redValue < 2)
{
Pixel pixelTarget = new Pixel(secretImage,x,0);
pixelColor = pixelTarget.getColor();
redValue = pixelColor.getRed();
binaryInt[x] = redValue;
x++;
}
}
public void decodeBinary(int [] binary)
{
int binaryLen = binary.length;
long totVal = 0;
int newVal = 0;
int bitVal = 0;
long preVal = 0;
long base = 2;
for(int x = binaryLen - 1; x >= 0; x--)
{
bitVal = binary[x];
preVal = bitVal * base;
totVal += preVal;
base = base * 2;
}
System.out.println(totVal);
}
}
public class DecodeMessageTester
{
public static void main(String[] args)
{
Picture pictureObj = new Picture("SecretMessage.bmp");
pictureObj.explore();
DecodeMessage decode = new DecodeMessage();
decode.getBinary(pictureObj);
int[] bitArray = {0,1,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,1,0,1,1,1,0,0,1,0,0,1,1,1,1,0,0,1};
decode.decodeBinary(bitArray);
}
}
答案 0 :(得分:0)
您的问题是您尝试将所有48位压缩为一个int
。但是,正如http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html所述,Java中的int
只能保存32位,因此您的数字会溢出。尝试将base
,preVal
和totVal
更改为long
,其中包含64位。
当然,如果你需要超过64位(或实际上因为最后一位是符号位而有63位),你将无法使用原始数字数据类型来保存它。