ファイル保存、htmlタグfileカスタムtestとbutton(メモ)


ファイルをローカルに保存した別のディレクトリを取得します.コードは以下の通りです.
 
 
public static void main(String[] args) {
		String photoUrl ="file:///f:/xx.wav";		
		String filePath = "E:/voc//Content/";
		String fileName=filePath+"tt.wav";		
		  try { 
			    URL url = new URL(photoUrl); 
			    FileURLConnection connection = (FileURLConnection) url.openConnection();
			    DataInputStream in = new DataInputStream(connection.getInputStream()); 
			    DataOutputStream out = new DataOutputStream(new FileOutputStream(fileName));
			    byte[] buffer = new byte[4096];
			    int count = 0;
			    while ((count = in.read(buffer)) > 0) { 
			    out.write(buffer, 0, count);
			    }
			    out.close();
			    in.close();			   
			  }
			  catch (Exception e) { 
			    e.printStackTrace();
			  } 
	}
 
 
htmlのfileラベル、ユーザー定義のbuttonボタンとtextテキストは、このようにしてtextに値を付けてbuttonのスタイルを設定することができます.コードは以下の通りです.
<input type="file" id="upVocFile"  name="upVocFile" style="display:none;"/>
<input type="text" name="file" id="file" disabled="disabled"  size="50" />
<input type="button" id="uploadBtn" name="uploadBtn" onClick="upVocFile.disabled=false;upVocFile.click();file.value=upVocFile.value;upVocFile.disabled=false;" value="  ..." />
 
 
type=「file」ファイル「ブラウズ」ボタンをクリックすると、イベントをトリガする書き方は以下の通りです.
 
<html >
<head>
</head>
<script type="text/javascript">
function test(){
	alert("ccc")
}
</script>
<body>
<input type="file" id="upVocFile" name="upVocFile"onchange="subf.click();"/>
<input type="button" value="  " id="subf" style="display:none" onclick="test()">
</body>
</html>
<html >
<head>
</head>
<script type="text/javascript">
function setTelNoS(){
	alert("ccc")
}
</script>
<body>
<input type="file" id="telNoFile" name="telNoFile" size="45" onchange="javascript :setTelNoS();"/></body>
</html>
 
 _fileObj.outer HTML=ufileObj.outerHTML  inputでfileコントロールの値をクリアできます.