큰 지혜
2365 단어 F#
/**
* , Level-2 (.dat) (.txt)
* */
private static ArrayList<Vector<Comparable>> list;
public static void main(String[] args) throws Exception {
DataInputStream in = null;
File f = new File("F:/gupiao.txt");
//
list = new ArrayList<Vector<Comparable>>();
FileOutputStream fos = new FileOutputStream(f);
PrintWriter pw = new PrintWriter(fos,true);
try {
in = new DataInputStream(new BufferedInputStream(
new FileInputStream(new File("E:/ /dzh2/data/sz/day.dat"))));
} catch (FileNotFoundException fileNotFoundException) {
fileNotFoundException.printStackTrace();
}
try {
in.skipBytes(266240);//
Vector vt = new Vector();
DateFormat riqi = new SimpleDateFormat("yyyy-MM-dd");
for (int i = 0; i < 8; i++) {
byte[] bt = new byte[4];
in.read(bt);
//
if (i == 0) {
String dateFormat = riqi
.format(new Date(
1000 * (long) ((bt[3] & 0xff) << 24
| (bt[2] & 0xff) << 16
| (bt[1] & 0xff) << 8 | (bt[0] & 0xff)))).toString();
vt.add(dateFormat);
//out.StringWriter(dateFormat,0,dateFormat.length());
System.out.println(" : " + dateFormat);
pw.write(dateFormat);
pw.flush();
}
else{
Float dateFloat = new Float(Float
.intBitsToFloat((bt[3] & 0xff) << 24
| (bt[2] & 0xff) << 16
| (bt[1] & 0xff) << 8 | (bt[0] & 0xff)));
vt.add(dateFloat);
System.out.println(dateFloat);
pw.print(dateFloat );
pw.flush();
//out.writer(dateFloat,0,dateFloat.length());
}
in.skipBytes(4);
}
list.add(vt);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (in != null)
in.close();
if (pw != null) {
pw.close();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
F#에서 Android 앱 개발 카운터(수취기)편F#에서 Android 앱 개발로서 카운터(수취기)의 작성 방법을 소개합니다. F#에서 Android 앱 개발의 기본은 다음 기사를 참조하십시오. 솔루션 탐색기의 Resources\layout\Main.axml을 열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.