其他分享
首页 > 其他分享> > 必做课下作业MyCP

必做课下作业MyCP

作者:互联网

20175227张雪莹 2018-2019-2 《Java程序设计》

必做课下作业MyCP

要求

程序代码

import java.io.*;

public class MyCP{
public static void main(String[] args) throws IOException {
//输入十进制文本
String filepath = "G:/学习的zxy最美丽/java/zxyjava/lll/from.txt";
String s =dataInputStream(filepath);
//将得到的二进制数存成文本
FileOutputStream fps = new FileOutputStream("G:/学习的zxy最美丽/java/zxyjava/lll/to.txt");
fps.write(s.getBytes());
fps.close();
}
public static String dataInputStream(String filepath) throws IOException {
File file = new File(filepath);
DataInputStream dps = new DataInputStream(new FileInputStream(file));
StringBuilder byData = new StringBuilder();
byte bt = 0;
for(int i=0;i<file.length();i++) {//返回一个字符串二进制的无符号整数
bt = dps.readByte();//按照字节读取
String str = Integer.toBinaryString(bt);
if(str.length() == 1) {
str = "0"+str;
}
byData.append(str.toUpperCase());
}
return byData.toString();
}
}

运行示例

代码托管

MyCP.java

标签:java,String,filepath,课下,必做,new,txt,MyCP
来源: https://www.cnblogs.com/zxy20175227/p/10779683.html