java中如何把十六进制转为十进制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中如何把十六进制转为十进制相关的知识,希望对你有一定的参考价值。
参考技术A 分类: 电脑/网络 >> 程序设计 >> 其他编程语言问题描述:
我用的java1.4 请问如何将十六进制整形数转化为十进制的
解析:
import java.awt.*;
public class d2x extends Frame
int decimalValue= 0;
String baseXValue = new String("0");
TextField dDisplay,xDisplay;
d2x constructor
d2x()
super("Decimal Converter");set the title of the frame
MenuBar mb = new MenuBar();
Button d2Binary = new Button("Binary");
Button d2Octal = new Button("Octal");
Button d2Hex = new Button("Hex");
Button d2Base36 = new Button("Base36");
Panel p1 = new Panel();
Panel p2 = new Panel();
Panel p3 = new Panel();
add a simple menu
Menu m = new Menu("Application");
m.add(new CheckboxMenuItem("Base 36 Active"));
m.add(new MenuItem("Exit"));
add menu to menubar
mb.add(m);
setMenuBar(mb);install this menu bar in the frame
Add buttons to their own panel
p3.setLayout(new FlowLayout());
p3.add(d2Binary);
p3.add(d2Octal);
p3.add(d2Hex);
p3.add(d2Base36);
Add text fields
Label dLabel = new Label("Enter Deecimal: ");
Label xLabel = new Label("Converted Value: ");
dDisplay = new TextField(Integer.toString(decimalValue),7);
xDisplay = new TextField(baseXValue,32);
xDisplay.setEditable(false);
p1.setLayout(new FlowLayout(FlowLayout.LEFT));
p2.setLayout(new FlowLayout(FlowLayout.LEFT));
p1.add(dLabel);
p1.add(dDisplay);
p2.add(xLabel);
p2.add(xDisplay);
Add the panels
add("North",p1);
add("Center",p2);
add("South",p3);
end d2x constructor
public void start()
resize(400,150);
show();
public void updateXDisplay()
xDisplay.setText(baseXValue);
public boolean handleEvent(Event evt)
if (evt.target instanceof MenuItem)
if ("Exit".equals(((MenuItem)evt.target).getLabel()))
hide();
dispose();
System.exit(0);
return false;
return true;
else if(evt.target instanceof Button)
String whick = ((Button)evt.target).getLabel();
if (whick.equals("Binary"))
decimalValue = Integer.parseInt(dDisplay.getText());
baseXValue = Integer.toString(decimalValue,2);
if (whick.equals("Octal"))
decimalValue = Integer.parseInt(dDisplay.getText());
baseXValue = Integer.toString(decimalValue,8);
if (whick.equals("Hex"))
decimalValue = Integer.parseInt(dDisplay.getText());
baseXValue = Integer.toString(decimalValue,16);
if (whick.equals("36"))
decimalValue = Integer.parseInt(dDisplay.getText());
baseXValue = Integer.toString(decimalValue,36);
updateXDisplay();
return true;
return false;
public static void main(String args[])
d2x m = new d2x();
m.start();
java怎样把字符串转化为二进制形式?
比如:
String str = "你好!";
怎么将 你好 转为二进制形式??
---------------------------------
这样的方法可以吗??
private void save()
String str = "你好";
try
DataOutputStream dataOut = new DataOutputStream(new FileOutputStream("d://test.hk"));
int length = str.length();
for (int i = 0; i < length; i++)
dataOut.write(str.charAt(i));
DataInputStream dataIn = new DataInputStream(new FileInputStream(
"d://test.hk"));
System.out.println();
catch (Exception e)
e.printStackTrace();
目的是将 你好 以二进制形式写入文档中,上面的方法可以吗?
import java.util.Arrays;
/*
* String(byte[] bytes, String charsetName):通过指定的字符集解码字节数组
* byte[] getBytes(String charsetName):使用指定的字符集合把字符串编码为字节数组
*
* 编码:把看得懂的变成看不懂的
* String -- byte[]
*
* 解码:把看不懂的变成看得懂的
* byte[] -- String
*
* 举例:谍战片(发电报,接电报)
*
* 码表:小本子
* 字符 数值
*
* 要发送一段文字:
* 今天晚上在老地方见
*
* 发送端:今 -- 数值 -- 二进制 -- 发出去
* 接收端:接收 -- 二进制 -- 十进制 -- 数值 -- 字符 -- 今
*
* 今天晚上在老地方见
*
* 编码问题简单,只要编码解码的格式是一致的。
*/
public class StringDemo
public static void main(String[] args) throws UnsupportedEncodingException
String s = "你好";
// String -- byte[]
byte[] bys = s.getBytes(); // [-60, -29, -70, -61]
// byte[] bys = s.getBytes("GBK");// [-60, -29, -70, -61]
// byte[] bys = s.getBytes("UTF-8");// [-28, -67, -96, -27, -91, -67]
System.out.println(Arrays.toString(bys));
// byte[] -- String
String ss = new String(bys); // 你好
// String ss = new String(bys, "GBK"); // 你好
// String ss = new String(bys, "UTF-8"); // ???
System.out.println(ss);
参考技术A //将字符串转换成二进制字符串,以空格相隔
private String StrToBinstr(String str)
char[] strChar=str.toCharArray();
String result="";
for(int i=0;i<strChar.length;i++)
result +=Integer.toBinaryString(strChar[i])+ " ";
return result;
本回答被提问者和网友采纳
以上是关于java中如何把十六进制转为十进制的主要内容,如果未能解决你的问题,请参考以下文章
java 如何将string src = "ff" 转为 byte[] bt = (byte)0xff
从java的DES加密类中得出了十六进制密钥为B0 98 9E BC 07 EC 23 13,如何得到最终的8位有效密钥呢?