1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
|
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.FocusAdapter;
import java.awt.event.FocusEvent;
import java.io.File;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.filechooser.FileSystemView;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
public class FenetreSaisie extends JFrame{
//labels
private JLabel label_presentation_fenetre;
private JLabel label_entree;
private JLabel label_sortie;
//zones de texte
private JTextField txtlocalPath = new JTextField(25);
private JTextField txtSortie = new JTextField(25);
//boutons
private JButton btnparcourir = new JButton("Parcourir...");
private JButton btntradsimple = new JButton("ebXML -> XML");
private JButton btntradcomplique = new JButton("XML -> ebXML");
//creation du panel
JPanel panel = new JPanel();
public FenetreSaisie(){
super();
build();//On initialise notre fenêtre
}
//initialisation Fenetre
private void build(){
setTitle("Utilitaire de conversion"); //On donne un titre à l'application
setSize(450,225); //On donne une taille à notre fenêtre
setLocationRelativeTo(null); //On centre la fenêtre sur l'écran
setResizable(true); //On permet le redimensionnement
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //On dit à l'application de se fermer lors du clic sur la croix
setContentPane(buildContentPane());
}
private JPanel buildContentPane(){
//affectation du Layout GridBagLayout au panel
panel.setLayout(new GridBagLayout());
//création des composants
label_presentation_fenetre = new JLabel("Utilitaire de conversion");
//creation du bouton Parcourir afin de chercher la source
btnparcourir.addActionListener(new BoutonParcourirListener());
//creation de labels pour informer l'utilisateur
label_entree = new JLabel("Fichier à traduire");
label_sortie = new JLabel("Saisir le nom du fichier XML de sortie");
//creation du bouton de vérification du fichier d'entrée
//btnVerif.addActionListener(new BoutonVerifListener());
//txtlocalPath.addActionListener(new TxtLocalPathListener());
//creation du bouton Traduire ebXML vers XML
btntradsimple.addActionListener(new BoutonTradSimpleListener());
btntradsimple.setToolTipText("Traduit du ebXML vers le XML simplifié");
//creation du bouton traduire XML vers ebXML
btntradcomplique.addActionListener(new BoutonTradCompliqueListener());
btntradcomplique.setToolTipText("Traduit du XML simplifié vers le ebXML");
//Ajout des composants en spécifiant les contraintes
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx =0;
gbc.gridy = 0;
gbc.gridwidth = 10;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.NORTH;
gbc.fill = GridBagConstraints.CENTER;
panel.add(label_presentation_fenetre, gbc);
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridwidth =10 ;
gbc.gridheight =1;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.HORIZONTAL;
panel.add(label_entree, gbc);
gbc.gridx = 0;
gbc.gridy = 2;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.WEST;
gbc.fill = GridBagConstraints.NONE;
panel.add(txtlocalPath, gbc);
txtlocalPath.addFocusListener(new FocusAdapter() {
@Override
public void focusLost(FocusEvent e) {
/*btntradsimple.setEnabled(false);
btntradcomplique.setEnabled(false);
/*Utilisation d'un parser DOM ou SAX sans DTD ou xml schema pour la validation,
* s'il ya une erreur de parsing alors le fichier XML n'est pas bien formé càd NON XML.
*/
DocumentBuilderFactory fabrique = DocumentBuilderFactory.newInstance();
DocumentBuilder constructeur;
try {
if(txtlocalPath.getText().length()==0){
JOptionPane jop1 = new JOptionPane();
jop1.showMessageDialog(null, "Veuillez saisir un fichier de sortie d'extension .xml ", "Information", JOptionPane.INFORMATION_MESSAGE);
btnparcourir.setFocusable(true);
txtlocalPath.requestFocus();
}
else{
constructeur = fabrique.newDocumentBuilder();
// lecture du contenu d'un fichier XML avec DOM
File xml = new File(decoupeURL());
Document document;
document = constructeur.parse(xml);
/*on se place sur la racine, on vérifie alors :
* - soit que le fichier d'entrée est un document ebXML
* -soit que le fichier d'entrée est un document XML simple
* - soit ni l'un ni l'autre, alors erreur...
*/
Node racine = document.getDocumentElement();
String nomRacine = racine.getNodeName();
if(nomRacine=="Dematerialisation_prix" && (getFileExtension(txtSortie.getText())).compareTo("xml")==0){
txtSortie.setFocusable(true);
btntradcomplique.setEnabled(true);
btntradsimple.setEnabled(false);
}
else if(nomRacine=="itt:InvitationToTenderDetails" && (getFileExtension(txtSortie.getText())).compareTo("xml")==0){
txtSortie.setFocusable(true);
btntradcomplique.setEnabled(false);
btntradsimple.setEnabled(true);
}
else if (txtSortie.getText().length()==0 || (getFileExtension(txtSortie.getText())).compareTo("xml")!=0){
JOptionPane jop1 = new JOptionPane();
jop1.showMessageDialog(null, "Veuillez saisir un fichier de sortie d'extension .xml ", "Information", JOptionPane.INFORMATION_MESSAGE);
txtlocalPath.requestFocus();
}
}
}
catch (ParserConfigurationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
catch (SAXException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
JOptionPane error = new JOptionPane();
error.showMessageDialog(null, "Le fichier n'est ni un ebXML, ni un XML simple. Veuillez saisir un fichier.xml", "Erreur", JOptionPane.ERROR_MESSAGE);
txtlocalPath.requestFocus();
}
}
});
gbc.gridx = 3;
gbc.gridy = 2;
gbc.gridwidth = GridBagConstraints.REMAINDER;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.HORIZONTAL;
panel.add(btnparcourir, gbc);
gbc.gridx = 0;
gbc.gridy = 4;
gbc.gridwidth = 1;
gbc.gridheight =1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(label_sortie, gbc);
gbc.gridx = 0;
gbc.gridy = 5;
gbc.gridwidth = GridBagConstraints.REMAINDER;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(txtSortie, gbc);
gbc.gridx = 0;
gbc.gridy = 6;
gbc.gridwidth = 1;
gbc.gridheight =1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(btntradsimple, gbc);
gbc.gridx = 3;
gbc.gridy = 6;
gbc.gridwidth = GridBagConstraints.REMAINDER;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(btntradcomplique, gbc);
btntradsimple.setEnabled(false);
btntradcomplique.setEnabled(false);
/*
gbc.gridx = 0;
gbc.gridy = 7;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(txtTest, gbc);
gbc.gridx = 0;
gbc.gridy = 8;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.anchor = GridBagConstraints.BASELINE_LEADING;
gbc.fill = GridBagConstraints.NONE;
panel.add(btnTest, gbc);
btnTest.addActionListener(new BoutonTestListener());
*/
return panel;
}
//classe interne permettant d'écouter le bouton Parcourir
class BoutonParcourirListener implements ActionListener{
public void actionPerformed(ActionEvent event)
{
FileSystemView vueSysteme = FileSystemView.getFileSystemView();
File defaut = vueSysteme.getDefaultDirectory();
JFileChooser chooser = new JFileChooser(defaut);
ExampleFileFilter filter = new ExampleFileFilter();
filter.addExtension("xml");
filter.setDescription("fichiers .xml");
chooser.setFileFilter(filter);
chooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
chooser.showOpenDialog(null);
File file = chooser.getSelectedFile();
txtlocalPath.setText(file.getPath());
}
}//fin classe BoutonParcourirListener
//classe BoutonTradSimpleListener permettant d'écouter le bouton btntradsimple : pour passer du ebXML vers le XML simple
class BoutonTradSimpleListener implements ActionListener{
public void actionPerformed(ActionEvent arg0) {
//récupérer le contenu de la textBox et traduire
System.setProperty("javax.xml.transform.TransformerFactory",
"net.sf.saxon.TransformerFactoryImpl");
//on crée une fabrique de transformeurs
TransformerFactory factory = TransformerFactory.newInstance();
//fichier xsl de transformation
File fxsl = new File("transfo.xsl");
//fichier xml source de type source
Source xmlSource = new StreamSource(decoupeURL());
//nom du fichier de sortie de type Result
Result sortie = new StreamResult(txtSortie.getText());
//transformer
Transformer transformer;
try {
//on récupère un transformeur à partir d'une fabrique de transformeurs
transformer = factory.newTransformer(new StreamSource(fxsl));
//encoding
// transformer.setOutputProperty("encoding", "ISO-8859-1");
transformer.setOutputProperty("encoding", "UTF-8");
//pour l'indentation
transformer.setOutputProperty(OutputKeys.INDENT,"yes");
/*Utilisation d'un parser DOM ou SAX sans DTD ou xml schema pour la validation,
* s'il ya une erreur de parsing alors le fichier XML n'est pas bien formé càd NON XML.
*/
DocumentBuilderFactory fabrique = DocumentBuilderFactory.newInstance();
DocumentBuilder constructeur = fabrique.newDocumentBuilder();
// lecture du contenu d'un fichier XML avec DOM
File xml = new File(decoupeURL());
Document document = constructeur.parse(xml);
//transformation en prenant en paramètre le fichier xml source et fait le fichier xml de sortie
transformer.transform(xmlSource, sortie );
//boîte de dialogue informant que la traduction a bien été faite
JOptionPane jop1 = new JOptionPane();
jop1.showMessageDialog(null, "Traduction simple effectuée", "Information", JOptionPane.INFORMATION_MESSAGE);
btntradcomplique.setEnabled(false);
btntradsimple.setEnabled(false);
txtlocalPath.setText("");
txtSortie.setText("");
}
catch (TransformerConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (TransformerException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch(SAXException se){
//C'est un fichier Non Xml
}catch(IOException ioe){
JOptionPane error = new JOptionPane();
error.showMessageDialog(null, "Le fichier n'est pas un fichier xml. Veuillez saisir un fichier.xml", "Erreur", JOptionPane.ERROR_MESSAGE);
}
}
}//fin de la classe BoutonTradSimpleListener
//classe BoutonTradCompliqueListener permettant d'écouter le bouton btntradcomplique : pour passer du XML simple au ebXML
class BoutonTradCompliqueListener implements ActionListener{
public void actionPerformed(ActionEvent arg0) {
//récupérer le contenu de la textBox et traduire
System.setProperty("javax.xml.transform.TransformerFactory",
"net.sf.saxon.TransformerFactoryImpl");
//on crée une fabrique de transformeurs
TransformerFactory factory = TransformerFactory.newInstance();
//fichier xsl de transformation
File fxsl = new File("transfo_eb.xsl");
//fichier xml source de type source
/*
if(getFileExtension(decoupeURL())!="xml"){
JOptionPane.showMessageDialog(panel,
"Saisir un Fichier d'extension .xml por favor",
"Message d'erreur",
JOptionPane.ERROR_MESSAGE);
}*/
Source xmlSource = new StreamSource(decoupeURL());
//nom du fichier de sortie de type Result
/*
if(getFileExtension(txtSortie.getText())!="xml"){
JOptionPane.showMessageDialog(panel,
"Saisir un Fichier d'extension .xml por favor",
"Message d'erreur",
JOptionPane.ERROR_MESSAGE);
}*/
Result sortie = new StreamResult(txtSortie.getText());
//transformer
Transformer transformer;
try {
//on récupère un transformeur à partir d'une fabrique de transformeurs
transformer = factory.newTransformer(new StreamSource(fxsl));
//encoding
// transformer.setOutputProperty("encoding", "ISO-8859-1");
transformer.setOutputProperty("encoding", "UTF-8");
//pour l'indentation
transformer.setOutputProperty(OutputKeys.INDENT,"yes");
/*Utilisation d'un parser DOM ou SAX sans DTD ou xml schema pour la validation,
* s'il ya une erreur de parsing alors le fichier XML n'est pas bien formé càd NON XML.
*/
DocumentBuilderFactory fabrique = DocumentBuilderFactory.newInstance();
DocumentBuilder constructeur = fabrique.newDocumentBuilder();
// lecture du contenu d'un fichier XML avec DOM
File xml = new File(decoupeURL());
Document document = constructeur.parse(xml);
//transformation en prenant en paramètre le fichier xml source et fait le fichier xml de sortie
transformer.transform(xmlSource, sortie );
//Boîte du message d'information
JOptionPane jop1 = new JOptionPane();
jop1.showMessageDialog(null, "Traduction complexe effectuée", "Information", JOptionPane.INFORMATION_MESSAGE);
btntradcomplique.setEnabled(false);
btntradsimple.setEnabled(false);
txtlocalPath.setText("");
txtSortie.setText("");
} catch (TransformerConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (TransformerException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
JOptionPane error = new JOptionPane();
error.showMessageDialog(null, "Le fichier n'est pas un fichier xml. Veuillez saisir un fichier.xml", "Erreur", JOptionPane.ERROR_MESSAGE);
}
}
}//fin de la classe BoutonTradCOmpliqueListener
public static void main(String[] args) {
//On crée une nouvelle instance de notre FenetreTexte
FenetreSaisie fenetre = new FenetreSaisie();
fenetre.setVisible(true);//On la rend visible
}
/*méthode permettant de découper l'adresse absolue qui est écrite dans le textarea du chemin : txtlocalPath
* 1) permet de récupérer l'URL du fichier xml à traduire
* 2) ne prend que le fichier .xml de cette URL
*/
public String decoupeURL(){
String s = txtlocalPath.getText();
File file = new File(s);
s = file.getName();
return s;
}
/*méthode permettant d'extraire l'extension d'un fichier
* On se servira de cette méthode pour s'assurer notamment que :
* les fichiers qui sont passés en entrée et les noms de fichiers de sortie sont bien des .xml
*/
public static String getFileExtension(String NomFichier) {
File tmpFichier = new File(NomFichier);
tmpFichier.getName();
int posPoint = tmpFichier.getName().lastIndexOf('.');
if (0 < posPoint && posPoint <= tmpFichier.getName().length() - 2 ) {
return tmpFichier.getName().substring(posPoint + 1);
}
return "";
}
}//fin de la classe |