Search found 3 matches

by solo1
Fri, 2017-07-14, 17:22
Forum: DCMTK - General
Topic: No effect on command line with DCMTK.exe via java
Replies: 5
Views: 4544

Re: No effect on command line with DCMTK.exe via java

Then there should be an error, i.e exception. Note that a.dcm should be in the working directory, ie. normally the directory where you run the stuff. I would try the following: Verify that the command works on your file from the command line directly. Try giving the full path to a.dcm in your Proce...
by solo1
Fri, 2017-07-14, 17:01
Forum: DCMTK - General
Topic: No effect on command line with DCMTK.exe via java
Replies: 5
Views: 4544

Re: No effect on command line with DCMTK.exe via java

Hi, does the second parameter of ProcessBuilder really take the executable again, i.e. maybe it's: Process process = new ProcessBuilder("C:\\Users\\Public\\Documents\\dcmodify.exe", "-i \"(0010,0010)= Mike\" a.dcm").start(); Best, Michael I try it, It does not work. (a...
by solo1
Fri, 2017-07-14, 16:51
Forum: DCMTK - General
Topic: No effect on command line with DCMTK.exe via java
Replies: 5
Views: 4544

No effect on command line with DCMTK.exe via java

I'm trying to test the functionality of DCMTK, and I like the idea of use it through command line in my java program. I tried to send some command in java but did not receive the expected effects. What I did: 1) I downloaded the latest version of the executable file, I took dcmodify.exe from it and ...