Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: irou
  • Order by date
  1. irou

    how to open and import files in Zeves within Java

    I write this but nothing is executed or written.there is no error but nothing happens. "C:\Python23\pythonw.exe" "C:\Program Files (x86)\Z-Eves 2.3.1\gui\toplevel.pyw" "C:\Users\USER\Desktop\exemple.tex" I try all possibilities with slashes and backslashes and when Z-Eves opened there is no file.
  2. irou

    how to open and import files in Zeves within Java

    @stefanwagner My file path is C:\Users\USER\Desktop\exemple.tex what shall i write exactly in shell : I have this: C:\Users\USER>
  3. irou

    how to open and import files in Zeves within Java

    String[] cmd = {"C:\\Python23\\pythonw.exe", "C:\\Program Files (x86)\\Z-Eves 2.3.1\\gui\\toplevel.pyw", "C:/Users/USER/Desktop/exemple.tex"}; File workingDir = new File("C:\\Program Files (x86)\\Z-EVES 2.3.1\\gui"); try { Runtime r = Runtime.getRuntime(); r.exec(cmd,null ...
  4. irou

    how to open and import files in Zeves within Java

    my file path is like this one: C:\Users\irou\Desktop\exemple.tex
  5. irou

    how to open and import files in Zeves within Java

    this code is correct and it allows me to execute Z\eves String[] cmd = {"C:\\Python23\\pythonw.exe", "C:\\Program Files (x86)\\Z-Eves 2.3.1\\gui\\toplevel.pyw"}; File workingDir = new File("C:\\Program Files (x86)\\Z-EVES 2.3.1\\gui");try { Runtime r = Runtime.getRuntime(); Process p =...
  6. irou

    how to open and import files in Zeves within Java

    my problem here is how to complete this code to open my file .tex like when i want to open a file with notepad for exemple i do that Runtime.getRuntime().exec("C:\\Program Files (x86)\\Notepad++\\notepad++.exe "+file.path); here, where should i insert the file path String[] cmd =...
  7. irou

    how to open and import files in Zeves within Java

    I'm developping an application with java. It's about transforming an XML schema to Z specification. So,I have to generate a .tex file(after transformations done with XSLT. In my editor, i have to execute Z/Eves and open this file(.tex): It means I have a button TRANSFORM(on click) Z/eves is...
  8. irou

    how to open and import files in Zeves within Java

    Hello, this code let me execute Z\eves within java, but now, i want to open a file and to import an other one. String[] cmd = {"C:\\Python23\\pythonw.exe", "C:\\Program Files (x86)\\Z-Eves 2.3.1\\gui\\toplevel.pyw"}; File workingDir = new File("C:\\Program Files (x86)\\Z-EVES...
  9. irou

    execute Z-Eves within java

    It means,Z-EVES isn't executed and i have this error: java.io.IOException: Cannot run program "C:\Python23\pythonw.exe" (in directory "C:\Program Files (x86)\Z-EVES 2.3.1\gui"): CreateProcess error=740, L?opération demandée nécessite une élévatio
  10. irou

    execute Z-Eves within java

    hello, i'm developping with java an editor which offer me the possibility to save an XML file. My task is to transform this file to Z:So i have to transform it at first to .Tex and open this new file .tex generated with Z-EVES. I have to run Z-Eves within java(i.e,when i press a bouton...

Part and Inventory Search

Back
Top