大家早上好
我是法国人,所以我没有漂亮的英语^^我的问题是在我的代码中,我想将我的文件移动到nas与此路径("nas-tps community -tps"),但这是不正确的,但Netbeans告诉我这是错误的(在我的类Parcourir.java与JFileChooser)我怎么才能把这条路径放上去呢?
我的班级:
package ged;
import java.io.File;
import java.io.IOException;
import javax.swing.JFileChooser;
/**
*
* @author Evan
*/
public class Parcourir {
public void Enregistrer() throws IOException
{
JFileChooser newdestination = new JFileChooser();
newdestination.setCurrentDirectory(new File("\nas-tpscommun-tps"));//Chemin
newdestination.setAcceptAllFileFilterUsed(false);
newdestination.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
newdestination.setMultiSelectionEnabled(false);
newdestination.showOpenDialog(null);
int dest = newdestination.showOpenDialog(null);
if(dest == JFileChooser.APPROVE_OPTION)
{
File[] fichier02=newdestination.getSelectedFiles();
for(int t = 1; t<fichier02.length; ++t)
{
fichier02[t].getName();
fichier02[t].getAbsolutePath();
}
System.out.println("Destination choisie : " + newdestination.getSelectedFile());
}
else
{
System.out.println("Aucune destination choisie");
}
}
}
第二次,我想在我的代码的最后,我想用我的方法enregister的路径重命名我的文件但这对Netbeans来说是不正确的。
My class GED:
package ged;
import java.awt.Component;
import java.io.File;
import java.util.Scanner;
import javax.swing.JFileChooser;
/**
*
* @author Evan
*/
public class GED {
private static String Nom_Client;
private static String N_plan;
private static String ind;
private static String Reference;
private static String Typologie;
public static void main(String[] args) throws Exception {
// TODO code application logic here
System.out.println("****************** TPS Gestionnaire ******************");
System.out.println(" ");
System.out.println("Quel fichier choisissez vous ?");
JFileChooser file = new JFileChooser();
file.setFileSelectionMode(JFileChooser.FILES_ONLY);
file.setMultiSelectionEnabled(false);
int retour = file.showOpenDialog(null);
if(retour == JFileChooser.APPROVE_OPTION)
{
File[] fichier=file.getSelectedFiles();
for( int i = 1; i<fichier.length; ++i)
{
fichier[i].getName();
fichier[i].getAbsolutePath();
}
System.out.println("Fichier choisi : " + file.getSelectedFile().getName());
}
else
{
System.out.println("Aucun de fichier choisi");
}
System.out.println (" ");
System.out.println("Veuillez indiquer le nom du client");
Scanner name = new Scanner (System.in);
String Nom_Client = name.nextLine();
System.out.println("L'entreprise est: " + Nom_Client.toUpperCase());
System.out.println ("Dans quel sous doussier souhaitez vous mettre votre document ?");
System.out.println (" ");
System.out.println ("1." + " PV Contrôle ");
System.out.println ("2." + " Plan ");
Scanner sr = new Scanner (System.in);
int i = sr.nextInt();
Categorie c = new Categorie (Nom_Client.toUpperCase(),"0","0","0","0");
if (i==1)
{
c.PVControle();
}
else
{
c.Plan();
System.out.println (" Veuillez choisir la nouvelle destination du fichier");
System.out.println(" ");
Parcourir dest = new Parcourir();
dest.Enregistrer();
File source = file.getSelectedFile(); //Permet de récupérer le chemin du début
File destination = new File (dest.Enregistrer() + Nom_Client.toUpperCase()+" "+ c.getN_plan()+ " " + "Ind" + " "+ c.getind().toUpperCase() +".pdf"); // Permet d'avoir la nouvelle destination avec le fichier renommé
source.renameTo(destination); //Pas encore corrigé
System.out.println(" Votre fichier à été renommé puis déplacé");
}
}
}
和我的类类别:
package ged;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Scanner;
import javax.swing.JButton;
import javax.swing.JFileChooser;
/**
*
* @author Evan
*/
public class Categorie {
private String Nom_Client;
private String N_plan;
private String ind;
private String Reference;
private String Typologie;
public Categorie(String Nom_Client, String N_plan, String ind, String Reference, String Typologie) {
this.Nom_Client = Nom_Client;
this.N_plan = N_plan;
this.ind = ind;
this.Reference = Reference;
this.Typologie = Typologie;
}
public void PVControle () throws IOException{
int t = 0;
System.out.println("Vous avez choisit la catégorie PV de contrôle");
System.out.println("Veuillez indiquer la référence produit");
Scanner ref = new Scanner (System.in);
this.Reference = ref.nextLine(); //Permet de demander la reference du plan
System.out.println("Ainsi que la typologie de production");
System.out.println("1." + "TÔLES");
System.out.println("2." + "BOB");
Scanner typ = new Scanner (System.in);
this.Typologie = ref.nextLine(); //Permet de demander la typologie
if ( t == 1)
{
System.out.println (" Vous avez choisit la typologie TÔLES ");
this.Typologie = "TÔLES";
}
else
{
System.out.println(" Vous avez choisit la typologie BOB ");
this.Typologie = "BOB";
}
System.out.println("Le nom du fichier est: " +Nom_Client + " " + "REF" + " " + Reference.toUpperCase() + " " + "-" + " " + Typologie);
}
public void Plan () throws IOException {
System.out.println("Vous avez choisit la catégorie Plan");
System.out.println("Veuillez indiquer le n° Plan");
Scanner plan = new Scanner (System.in);
N_plan = plan.nextLine(); //Permet de demander le n°Plan
System.out.println ("Ainsi que l'IND");
Scanner IND = new Scanner (System.in);//Demande de l'IND
ind = IND.nextLine();
System.out.println("Le nom du fichier est: " +Nom_Client + " " + N_plan + " " + "Ind" +" " + ind.toUpperCase());
}
public String getN_plan()
{
return N_plan;
}
public String getind()
{
return ind;
}
}
你们能帮帮我吗?这对我很重要!
谢谢你的理解
也许你忘了转义中间的反斜杠?
newdestination.setCurrentDirectory(new File("\nas-tps\commun-tps"));//Chemin
或者你可能忘记了转义所有的反斜杠?(不清楚是否需要在路径开始处使用双斜杠)
newdestination.setCurrentDirectory(new File("\\nas-tps\commun-tps"));//Chemin
而且,据我所知,Java可以很好地使用正斜杠作为目录标记,而不考虑操作系统的具体情况。尝试路径"/nas-tps/commun-tps"
或"//nas-tps/commun-tps"