Search found 7 matches
- Wed Feb 11, 2004 6:28 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
Hello, The following is the error I get when I print the error out: Errorjava.io.FileNotFoundException: /var/tomcat4/webapps/Application1/jsp/images/02112004.png (No such file or directory) HERE IS HOW I USE THE PATH IN MY CODE: String linuxpath = "/var/tomcat4/webapps/Application1/jsp/images/" Char...
- Wed Feb 11, 2004 4:55 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
How can this be accomplished in using linux path to specifying where I want to save my jpg files? In windows I use: C:/Oracle/jdev/mywork/Application1/Project1/public_html/images/ and it works In linux I have some jpgs already located in the images directory, but when I creat new jpgs in my applicat...
- Tue Feb 10, 2004 11:01 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
- Tue Feb 10, 2004 10:37 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
Below is my code, I figured out how to save the jpgs to the windows file system, when I use the windows file system format it works using the code below String path = "C:/Oracle/jdev/mywork/Application1/Project1/public_html/images/"; try { ChartUtilities.saveChartAsJPEG(new File(path + Fname + Lname...
- Tue Feb 10, 2004 10:19 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
Hello, I am not sure what you are referring too??? I am logged on as root on my machine I have rights to all files and directories. Currently the jpg files are being created in: /var/tomcat4 I want the jpg files to be created in: /var/tomcat/webapps/Assignment1/jsp/images After saving them into the ...
- Tue Feb 10, 2004 9:33 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
- Tue Feb 10, 2004 8:18 pm
- Forum: JFreeChart
- Topic: saving Jpeg to a specified location (linux)
- Replies: 13
- Views: 24824
saving Jpeg to a specified location (linux)
Hello, I am currently trying to save the jpeg that is created using ChartUtilities.saveChartAsJPEG into a specified location on my harddrive. I have tried prepending the the jpg file with a path like: ChartUtilities.saveChartAsJPEG(new File(" images/ " + Fname + Lname + Cycle + dateFormat + ".jpg"),...