1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 package complex.reportdesign;
25 
26 import java.io.File;
27 import java.net.URI;
28 import java.net.URISyntaxException;
29 
30 /**
31  *
32  * @author ll93751
33  */
34 public class FileURL
35 {
36     String m_sFileURL;
37 
FileURL(String _sFileURL)38     public FileURL(String _sFileURL)
39     {
40         m_sFileURL = _sFileURL;
41     }
exists()42     public boolean exists()
43     {
44         try
45         {
46             final URI aURI = new URI(m_sFileURL);
47             final File aFile = new File(aURI);
48             return aFile.exists();
49         }
50         catch (URISyntaxException ex)
51         {
52             System.out.println("Error: URI is wrong. '" + m_sFileURL + "': " + ex.getMessage());
53         }
54         return false;
55     }
56 }
57