Hi! I'm trying to open a pdf file and this way works fine when the pdf it's in C:
try
{
Runtime.getRunt ime().exec("run dll32 url.dll,FilePro tocolHandler " + "c:\\tuto.pdf") ;
}
but now I don't know the tuto.pdf path, I know it looks like this:
SOMETHINGHERE \ MyApplication\T otorials\tuto.p df, but how could I find the SOMETHINGHERE part of the path?
try
{
Runtime.getRunt ime().exec("run dll32 url.dll,FilePro tocolHandler " + "c:\\tuto.pdf") ;
}
but now I don't know the tuto.pdf path, I know it looks like this:
SOMETHINGHERE \ MyApplication\T otorials\tuto.p df, but how could I find the SOMETHINGHERE part of the path?
Comment