java 将任何信息转化成二进制形式

如下代码可实现将你所需要的任何信息转换成二进制代码形式

 

package com.kinghi.xlink.common.util.file;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

/**
 * XAnyToBinary.java
 *
 * 将信息转换成二进制形式
 *
 * @author wanghy
 * @version 1
 * @since 2008.01.25
 */
public class XAnyToBinary {
 public static XAnyToBinary stb = new XAnyToBinary();

 public OutputStream os;

 public File f;

 public boolean getFile() {
  f = new File("file.properties");
  if (!f.exists()) {
   try {
    f.createNewFile();
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
  return true;
 }

 public OutputStream getOS() {
  if (stb.getFile()) {
   try {
    os = new FileOutputStream(f, true) {
     @SuppressWarnings("unused")
     protected void writeStreamHeader() throws IOException {
     }
    };
   } catch (FileNotFoundException e) {
    e.printStackTrace();
   }
  }
  return os;
 }

 public void toBinary(String str) {
  byte[] b = str.getBytes();
  System.out.println("需要转换的信息是:" + str);
  for (int j = 0; j < b.length; j++) {
   System.out.print("b[" + j + "]= " + b[j] + " ASCII码是:");
   int number = Integer.parseInt(String.valueOf(b[j]));
   System.out.print("number= " + number + " 转化成32位的二进制后:");
   stb.toBinary(number);
  }
  System.out.println();
 }

 public void toBinary(int v) {
  String str = Integer.toBinaryString(v);
  if (str.length() < 32) {
   int t = 32 - str.length();
   for (int j = 0; j < t; j++) {
    str = "0" + str;
   }
  }
  System.out.println(str);
  os = stb.getOS();
  if (os != null) {
   try {
    os.write(str.getBytes());
    os.write("/r/n".getBytes());
    os.close();
   } catch (IOException e) {
    e.printStackTrace();
   }
  } else {
   return;
  }
 }

 public static void main(String[] args) {
  int k = 2;
  int m = -2;
  stb.toBinary(",");
  stb.toBinary(" ");
  stb.toBinary("-7");
  stb.toBinary("你好啊");
  System.out.print("直接输入整数 " + k + " 转化成32位的二进制数是:");
  stb.toBinary(k);
  System.out.print("直接输入整数 " + m + " 转化成32位的二进制数是:");
  stb.toBinary(m);
  System.out
    .println("-2转化成二进制的长度:" + Integer.toBinaryString(-2).length());
}

}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

枫叶rain

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值