-
android开发fileoutputstream有关问题
android开发fileoutputstream问题android平台上,我用fileoutputstream?fos=new?fileoutputstream("/sdcard/1.txt");老是抛异常filenotfoundexception,但我用?fileoutputstream?fos=openfileoutput("1.txt")就可以,但不能指定路径,小白求大神讲解color='...
81
热度 -
导出到excel报表
导出到excel表格 publicvoidexportYffzjyExcel(){ Map<String,Object>beans=newHashMap<String,Object>(); beans.put("xlgzgl",xlgzgl); Stringwjmc="|"; if(wjmcs!=null){ for(inti=0;i<wjm...
183
热度 -
创造系统参数 (实例化参数)
创建系统参数(实例化参数) 参数文件引用qnr.properties之中属性:exportURL=http://ww... importjava.io.FileInputStream; importjava.io.FileNotFoundException; importjava.io.IOException; importjava.util.Properties; publicclassSys...
237
热度 -
关于Spring DefaultResourceLoader属性文件加载的有关问题
关于SpringDefaultResourceLoader属性文件加载的问题springorg.springframework.context.support.ReloadableResourceBundleMessageSource是用来配置属性文件的工具类如下图配置可以取出属性值但是下图自己手动写了一个却说属性文件找不到FileNotFoundException'>java.io.FileNo...
416
热度 -
系统找不到指定的路径,该如何处理
系统找不到指定的路径//获取到一个路径StringfileURL=request.getSession().getServletContext() .getRealPath("xml/"+newTime+".xml");//使用File创建文件 Filefile=newFile(fileURL); file.createNewFile();报了两个错java.io.IOExcept...
3976
热度 -
导出Excel聚合
导出Excel集合 ??导出Excel集合 publicvoidexportAll(){ if(getTemplateName()!=null){ StringtemplateName=getTemplateName(); Stringsortstr=FacesUtils.getValueInHashtableOfSession("sortstr").toString(); Stringhql=...
596
热度 -
myeclipse 起动不了
myeclipse启动不了[color=#00FF00]myeclipse启动时弹出错误[/color]:FileNotFoundException'>java.io.FileNotFoundException:C:\ProgramFiles\Genuitec\MyEclipse7.5\configuration\org.eclipse.osgi\bundles\425\data\listener...
71
热度 -
FileReader不能设置字符编码,该如何解决
FileReader不能设置字符编码我发现FileReader是不能设置字符编码,那么它的默认编码是怎么指定的哦?color='#e78608'>------解决方案--------------------系统平台默认编码可以这样设置编码:BufferedReaderbr=newBufferedReader(newInputStreamReader(newFileInputStream("...
292
热度 -
怎么把逐行读取的数据保存到对象中
怎样把逐行读取的数据保存到对象中Filef=newFile(file); try{ FileReaderfr=newFileReader(f); BufferedReaderbr=newBufferedReader(fr); Stringline=null; while((line=br.readLine())!=null){ System.out.println(line); ...
39
热度 -
myeclipse 起步不了
myeclipse启动不了[color=#00FF00]myeclipse启动时弹出错误[/color]:FileNotFoundException'>java.io.FileNotFoundException:C:\ProgramFiles\Genuitec\MyEclipse7.5\configuration\org.eclipse.osgi\bundles\425\data\listener...
25
热度 -
找不到路径怎么处理
找不到路径怎么办我写了一个hibernater程序,运行后说FileNotFoundException'>java.io.FileNotFoundException:D:\workspace\Hibernate_Proj\hibernate.cfg.xml(系统找不到指定的路径。)请问该怎么办?color='#e78608'>------解决方案--------------------你是绝对定位...
156
热度 -
rar文件怎么读出转换成byte[]
rar文件如何读出转换成byte[]?现在有个rar的压缩包文件,想把它读出来转成一个byte[],应该如何写这个代码?谢谢!color='#e78608'>------解决方案--------------------先解压JavacodepublicstaticListunzip(FormFileformFile){if(formFile==null)returnnull;Listlist=nu...
374
热度 -
property文件键值的修改,该如何处理
property文件键值的修改请问怎么根据键值修改property文件中的内容就像xml修改节点值一样下面是读取property文件的代码/************************************************************/Propertiesprop=newProperties();try{prop.load(newFileInputStream("...
131
热度 -
jar包中配置文件的读取有关问题
jar包中配置文件的读取问题我在src底下有一个xml配置文件,一个类文件去读取(修改)该配置文件,当没打包时程序没错,打包以后(配置文件和那个类文件在同一个包中),发生了错误:FileNotFoundException'>FileNotFoundException提示该配置文件找不到我是用这样的方法读取该配置文件:newFileReader("dbSelect.xml")co...
154
热度 -
请问打开文件读取文件再关闭的标准代码
请教打开文件读取文件再关闭的标准代码书上说关闭文件的代码通常放在finally块中,于是我写了如下的代码importjava.io.*;classExceptionTest{ publicstaticvoidmain(Stringargs[]){ FileInputStreamfis; try{ fis=newFileInputStream("D:\\projects\\java...
292
热度 -
小弟我在启动was的脚本程序的时候发生如下错,请教应怎么解决
我在启动was的脚本程序的时候发生如下错,请问应如何解决错误如下,请问是什么原因,应怎么解决:[09.09.0616:25:23:104CST]4cacc3fbNodeConfigXXMLC0003E:FailedtoinitializeNodeConfig.XMLC0042E:NamingExceptionjavax.naming.NamingException:Errorduringresol...
3871
热度 -
关于FileInputStream的有关问题
关于FileInputStream的问题JavacodepublicclassFileInputStreamTestDemo{publicstaticvoidmain(String[]args)throwsIOException{FileInputStreamfis=newFileInputStream("FileInputStreamTestDemo.java");byte[...
124
热度 -
method的exception与方法内exception的区别解决办法
method的exception与方法内exception的区别publicvoidprint(Stringphrase,intmax){ if(phrase==null||max<0){ thrownewIllegalArgumentException("Stringisnull,ormaxissmallerthan0"); }}上面的这个是一个普通的throw...
115
热度 -
FileInputStream 对象的创建,该如何处理
FileInputStream对象的创建JavacodeFileInputStreamin=null;try{in=newFileInputStream("d:\\TestFileInputStream.java");}catch(FileNotFoundException'>FileNotFoundExceptione){System.out.println("找不...
464
热度 -
字符串格式转换的有关问题
字符串格式转换的问题try{ bb=newBufferedReader(newInputStreamReader( newFileInputStream(newFile("F:\\测试2.txt")))); Stringstring=null; while((string=bb.readLine())!=null){ intll=Integer.v...
103
热度