毕业设计中,
请问如何用jfilechooser打开word文档啊,真的很急啊
小妹在这里先谢谢大家
谢谢你的回帖.呵呵
JFileChooser jf=new JFileChooser(); //文件选择框
jf.setMultiSelectedEnabled(true);
int option= jf.showOpenDialog(this);
if(option==JFileChooser.APPROVE_Option){
File[] sf=jf.getSelectedFiles();
String filelist=”nothing”;
if(sf.length>0) filelist=sf[0].getName();
for(int i=1;i<sf.length;i++){
filelist+=”,”+sf[i].getName();
}
这个程序可以打开吗
String currentFilePath = null;
File file = null;
String currentFileName = null;
JFileChooser jFileChooser = new JFileChooser();
int result = jFileChooser.showOpenDialog(null);
if(result == JFileChooser.APPROVE_OPTION)
{
currentFilePath = jFileChooser.getSelectedFile().getPath();
try
{
file = new File(currentFilePath);
currentFileName = file.getAbsolutePath();//完整路径
System.out.println(currentFileName);
currentFileName = file.getParent();//父路径,也是完整的,你可以通过StringTokenizer分解开来
Runtime.getRuntime().exec("currentFileName");
}
catch(NullPointerException npe)
{
String errorMsg = new String("status: Error by opening " );
System.err.println(errorMsg);
}
/*catch(IOException ioe)
{
System.err.println(ioe);
}*/
}
我这样获得了全路径,但好象仍然打不开啊