harshada patil

Ranch Hand
+ Follow
since Mar 12, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
3
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by harshada patil

@William It's a desktop application
10 years ago
I want to provide an editor in my application, On which user can drag and drop controls to create diagram, from which I can find out diagram specification. How to do this?
10 years ago
server is an executable file and I gave permission to 'server file', and now it is working fine ... Thanks
11 years ago
I have already given all permissions to both shell script n jar file.... still not working
11 years ago
I am getting error while opening an java application using bash script.....
cannot run program "../server" java.io.IOException: error=13, permission denied
how to solve this exception?
11 years ago
I am creating a standalone java application in eclipse, and i want to create jar file of that application, i want directory structure for my app as
MyApp
- MyApp.jar
- Input (folder)
-- Logging.properties file
-- Input.properties file
- Lib (folder)
-- lib1.jar
-- lib2.jar
(path of Lib folder can change in future) so how to create jar of app such that i can modify classpath to point to new Lib (folder) location without creating new jar every time Lib (folder) path changes and how to set Logging.properties file path ?
This is a part of code i am using for reading email, if email contains multiple images then in some cases code is reading images in different sequence from one that appears in email, Is it possible to read images in the correct sequence ?



11 years ago
I compiled code with java version 1.6.0_21, and now I am trying to run code with jave version 1.6.0_31,
I compiled java code on windows machine and trying to run it on linux.
command:

java $JAVA_OPTS -classpath $CLASSPATH app


according to me as javac and java versions are same, what might be the problem?
11 years ago
I have one batch file to execute my java application, in which i am setting some system propperties as given below:

set ABCD_USERNAME=-Dabcduser="harsha_p"
set ABCD_PASSWORD=-Dabcdpwd="UJclDzbjshjkjmlkPNnsaalq"



and then

set JAVA_OPTS=%JAVA_OPTS% %QUAD_ABCDNAME% %ABCD_PASSWORD%



and then

java %JAVA_OPTS% -classpath %CLASSPATH% main



How to change this batch file to shell script ?
11 years ago
I want to send value in text box to perl script on submit.
11 years ago
If web server is not accessible, is there any other way to send images to application for displaying them ?
11 years ago
I want to read whole email content (message + attachments) and as there are various Content types, What is the good way to read email read email ?
11 years ago
Thanks Rob. That is what exactly i want to know. Please tell me more about " extracting attachments to a web server's file system " if possible.
11 years ago

No I'm getting HTML content in body, but when i'm using that contents to display as a web page, it displays without images.
11 years ago