<script type="text/javascript">
//添加key-value 数据到 sessionStorage
sessionStorage.setItem("demokey", "http://blog.itjeek.com")
//通过key来获取value
var dt = sessionStorage.getItem("demokey")
alert(dt)
//清空所有的key-value数据。
//sessionStorage.clear()
alert(sessionStorage.length)
</script>
点击保存,就会d出对话框,选择路径即可。
使用Java中的File类,url为文件的绝对地址,str为输入的字符串内容。代码如下图所示:String str="i love china!" File txt=new File("url") if(!txt.exists()){ txt.createNewFile() } byte bytes[]=new byte[512] bytes=str.getBytes() //新加的 int b=str.length() //改 FileOutputStream fos=new FileOutputStream(txt) fos.write(bytes,0,b) fos.close()建立输出流 保存方式作为.html格式的,如上OutputStream os=new FileOutputStream(new File("D:/test.html"))
os.write("<html></html>")
os.close()
这样就会在D盘生成一个test.html文件,内容是<html></html>。
不知道你明白了么?
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)