把SRTM的數據讀寫(xiě)了一下,可以用。
JAVA內存映射文件:http://jiangzhengjun.iteye.com/blog/515745
內存映射文件能讓你創(chuàng )建和修改那些因為太大而無(wú)法放入內存的文件。有了內存映射文件,你就可以認為文件已經(jīng)全部讀進(jìn)了內存,然后把它當成一個(gè)非常大的數組來(lái)訪(fǎng)問(wèn)。這種解決辦法能大大簡(jiǎn)化修改文件的代碼。
fileChannel.map(FileChannel.MapMode mode, long position, long size)將此通道的文件區域直接映射到內存中。注意,你必須指明,它是從文件的哪個(gè)位置開(kāi)始映射的,映射的范圍又有多大;也就是說(shuō),它還可以映射一個(gè)大文件的某個(gè)小片斷。
MappedByteBuffer是ByteBuffer的子類(lèi),因此它具備了ByteBuffer的所有方法,但新添了force()將緩沖區的內容強制刷新到存儲設備中去、load()將存儲設備中的數據加載到內存中、isLoaded()位置內存中的數據是否與存儲設置上同步。這里只簡(jiǎn)單地演示了一下put()和get()方法,除此之外,你還可以使用asCharBuffer( )之類(lèi)的方法得到相應基本類(lèi)型數據的緩沖視圖后,可以方便的讀寫(xiě)基本類(lèi)型數據。
盡管映射寫(xiě)似乎要用到FileOutputStream,但是映射文件中的所有輸出 必須使用RandomAccessFile,但如果只需要讀時(shí)可以使用FileInputStream,寫(xiě)映射文件時(shí)一定要使用隨機訪(fǎng)問(wèn)文件,可能寫(xiě)時(shí)要讀的原因吧。
該程序創(chuàng )建了一個(gè)128Mb的文件,如果一次性讀到內存可能導致內存溢出,但這里訪(fǎng)問(wèn)好像只是一瞬間的事,這是因為,真正調入內存的只是其中的一小部分,其余部分則被放在交換文件上。這樣你就可以很方便地修改超大型的文件了(最大可以到2 GB)。注意,Java是調用操作系統的"文件映射機制"來(lái)提升性能的。
package cn.edu.xjtu.nhpcc.jenva.file;
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class LargeFileReader {
static int length = 0x8FFFFFF; // 128 Mb
/**
* @param args
* @throws IOException
* @throws FileNotFoundException
*/
public static void main(String[] args) throws FileNotFoundException, IOException {
/* The following works well.
MappedByteBuffer out = new RandomAccessFile( "test.dat", "rw").getChannel().map(FileChannel.MapMode.READ_WRITE, 0, length);
for(int i = 0; i < length; i++)
out.put((byte) 'x');
System.out.println( "Finished writing ");
for(int i = length/2; i < length/2 + 6; i++)
System.out.print((char)out.get(i)); //read file
*/
/* The following is ours. */
FileChannel fc = new RandomAccessFile( "srtm1","r").getChannel();
System.out.println(fc.size());
long maxValue = length;
if (maxValue>fc.size()) {
maxValue = fc.size();
}
MappedByteBuffer out = fc.map(FileChannel.MapMode.READ_ONLY, 0, maxValue);
FileWriter fw = new FileWriter("srtm1-2");
int line =3601;
for(int i = 0; i < maxValue; i++) {
if (i != 0 &&i %(maxValue/line) == 0 ) {
fw.append("/n");
fw.append((char)out.get(i));
}else {
if (i<maxValue){
//System.out.print((char)out.get(i));
fw.append((char)out.get(i));
}
}
}
fw.close();
}
}
package cn.edu.xjtu.nhpcc.jenva.file;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
public class FileReaderTest {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
/*
MyFileReader f = new MyFileReader();
f.reader("hi");
*/
/*
* 下面這段代碼,讀出來(lái)的長(cháng)度連空格也算。
*/
/*
BufferedReader is = new BufferedReader(new FileReader("dbPoolParameter"));
ArrayList<Float> a = new ArrayList<Float>();
String s = is.readLine();
System.out.println(s.length());
*/
/*
* 下面這段代碼,讀出來(lái)的是純數字,空格不計入。
*/
/*
BufferedReader is = new BufferedReader(new FileReader("srtm1"));
ArrayList<Float> a = new ArrayList<Float>();
String s = is.readLine();
s.trim();
String b[] = s.split(" ");
System.out.println(b.length);
for (int i=0; i<b.length; i++) {
System.out.println(b[i]);
}
//System.out.println(s);
*/
/*
* 下面這段代碼,處理大文件的讀寫(xiě)。
*/
BufferedReader is = new BufferedReader(new FileReader("srtm1-2"));
ArrayList<Float> a = new ArrayList<Float>();
int line = 2;
for (int i=0; i<line; i++) {
String s = is.readLine();
s.trim();
String b[] = s.split(" ");
System.out.println(b.length);
for (int j=0; j<b.length; j++) {
System.out.println(b[j]);
}
System.out.println("********************************");
}
}
}