102 public AudioData getData() throws IOException {
103 int length = getLength();
104
105 //limit the memory to 1M, so too large au file won't load
106 if (length < 1024*1024) {
107 byte [] buffer = new byte[length];
108 try {
在105行可以看出檔案大於1M就會出錯。
102 public AudioData getData() throws IOException {
103 int length = getLength();
104
105 //limit the memory to 1M, so too large au file won't load
106 if (length < 1024*1024) {
107 byte [] buffer = new byte[length];
108 try {
NSIS 建立的安裝程式能夠安裝、卸載、設定系統設定、解壓檔案等等。因為它基於腳本檔案,你可以完全的控制安裝程式的每一部分。腳本語言支援變量、函數、字串操 作,就像一個普通的程式語言一樣 - 但是設計來建立安裝程式。即使有那麼多的特性,NSIS 仍然是最小的安裝程式系統。在預設選項下,它僅增加了 34 KB 的開銷。
官方網站