在數字簽名成功以後再init()函式中是可以建立檔案的。 但是自己寫的函式卻呼叫不了。
解決辦法:
/*** 寫入檔案內容
* */ public void
writetxt(string strtxt)
bufferedwriter output = new bufferedwriter(new
filewriter(filename));
output.write(strtxt);
output.close();
} catch
(ioexception e1)
}
上面的函式在js頁面直接呼叫是不會建立檔案的。
在建立乙個函式。這樣寫就可以解決問題
/*** html中呼叫建立檔案
* **/public
void runwritetxt(final
string strtxt)
});}
JS 函式的建立 呼叫 過載 匿名函式
一 函式的建立 1 宣告的方式 function 函式名 形參列表 在程式開始執行前!程式會先將所有var宣告的變數和function宣告的函式,提前到當前作用域的頂部集中建立。而賦值 留在原地。2 賦值方式 var 函式名 function 形參列表 在程式開始執行前,賦值方式可避免函式被宣告提前...
開啟建立檔案Open Create 函式
linux中 open 用於開啟已經存在的檔案或者建立乙個新檔案 create 用於建立乙個新檔案。int open const char pathname,int flag int open const char pathname,int flag,mode t mode 注 pathname 不...
js函式呼叫
呼叫方法 new object 函式名 實參列表 function jc n else 此處也就是函式jc n var result jc 10 方法一 函式名 實參列表 console.log result function foo a,b,c foo 1,2,3 foo.call 1,2,3 方...