Various improvements to handling and detection of URLs in codes
[zxing.git] / core-ext / src / com / google / zxing / client / result / URIParsedResult.java
1 /*
2  * Copyright 2007 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.result;
18
19 import java.net.URI;
20 import java.net.URISyntaxException;
21
22 /**
23  * @author srowen@google.com (Sean Owen)
24  */
25 public final class URIParsedResult extends ParsedReaderResult {
26
27   private final URI uri;
28
29   public URIParsedResult(String rawText) {
30     super(ParsedReaderResultType.URI);
31     if (rawText.startsWith("URL:")) {
32       // Sometimes a URL is prefixed with "URL:" -- support this
33       rawText = rawText.substring(4);
34     }
35     try {
36       uri = new URI(rawText);
37     } catch (URISyntaxException urise) {
38       throw new IllegalArgumentException(urise.toString());
39     }
40   }
41
42   public URI getURI() {
43     return uri;
44   }
45
46   @Override
47   public String getDisplayResult() {
48     return uri.toString();
49   }
50
51 }