Uniform Resource Identifier (URI) is a string of characters used to identify a name or a resource on the Internet.

learn more… | top users | synonyms

90
votes
16answers
12k views

What's the difference between a URI and a URL?

People talk about URLs and URIs as if they're different things, but they look the same to the naked eye. What's the difference between the two?
23
votes
2answers
9k views

Get filename and path from uri from mediastore

I have an onActivityResult returning from an mediastore image selection which I can get a URI for an image using the following: Uri selectedImage = data.getData(); Converting this to a string ...
22
votes
3answers
4k views

How to change a remote repository URI using Git?

I have a repo (origin) on an USB key that I cloned on my hardrive (local). I moved "origin" to a NAS and I successfully tested cloning it from here. I would like to know if I can change the uri of ...
21
votes
5answers
12k views

.NET - Get protocol, host, and port

Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL: http://www.mywebsite.com:80/pages/page1.aspx I need to return: ...
20
votes
1answer
6k views

Convert file path to a file URI?

Does the .NET Framework have any methods for converting a path (e.g. "C:\whatever.txt") into a file URI (e.g. "file:///C:/whatever.txt")? The Uri class has the reverse (from a file URI to absolute ...
18
votes
2answers
7k views

How to implement my very own URI schema on Android

Say I want to define that an URI such as: myapp://path/to/what/i/want?d=This%20is%20a%20test must be handled by my own application, or service. Notice that the schema is "myapp" and not "http", or ...
18
votes
3answers
20k views

Get file name from URI string in C#

I have this method for grabbing the file name from a string URI. What can I do to make it more robust? private string GetFileName(string hrefLink) { string[] parts = hrefLink.Split('/'); ...
15
votes
1answer
1k views

What is the difference between URI, URL and URN?

What's the difference between an URI, URL and URN? I have read a lot of sites (even Wikipedia) but I don't understand it. URI: http://www.foo.com/bar.html URL: http://www.foo.com/bar.html URN: ...
14
votes
7answers
6k views

Easy way to parse a url in C++ cross platform?

I need to parse a url to get the protocol host path and query in an application I am writing in c++. The application is intended to be cross platform. Im surprised I cant find anything that does this ...
14
votes
4answers
1k views

How to create a Uri instance parsed with GenericUriParserOptions.DontCompressPath

When the .NET System.Uri class parses strings it performs some normalization on the input, such as lower-casing the scheme and hostname. It also trims trailing periods from each path segment. This ...
13
votes
4answers
532 views

Why would someone design a RESTful API with 'API' in the URI?

I just finished reading Restful Web Services and Nobody Understands REST or HTTP and am trying to design an API with a RESTful design. I've noticed a few patterns in API URI design: ...
13
votes
2answers
7k views

Optional query string parameters in URITemplate in WCF?

I'm developing some RESTful services in WCF 4.0. I've got a method as below: [OperationContract] [WebGet(UriTemplate = "Test?format=XML&records={records}", ...
12
votes
2answers
8k views

Convert file: Uri to File in Android

What's the easiest way to convert from a file: android.net.Uri to a File in Android? Tried the following but it doesn't work: final File file = new File(Environment.getExternalStorageDirectory(), ...
12
votes
2answers
5k views

When to use query parameters versus matrix parameters?

Query parameters: http://example.com/apples?order=random&color=blue Matrix parameters: http://example.com/apples;order=random;color=blue When should one use query parameters versus matrix ...
11
votes
3answers
134 views

Is it safe to assume decoded percent-encoded URIs turn into UTF-8?

RFC 3986 states that new URI scheme should be encoded to UTF-8 first before being percent encoded. However, this does not apply to previous URI versions. Is it safe to assume that all multibyte, ...
11
votes
2answers
1k views

Is the HTML <base> tag also honored by scripting and CSS?

The base HTML element provides a base for relative URIs in the HTML. Must JavaScript and CSS also honor it for relative URIs issued in them: E.g. JavaScript: location.href = "mypage.htm"` CSS: ...
10
votes
3answers
471 views

Sending pause to dialer

In a similar vein to Sending Pause and DTMF input in android, I'm trying to send the pause character "," to the dialer. This works on HTC Sense phones and even on the Xoom, but not on "stock ...
10
votes
2answers
505 views

Difference between HTTP redirect codes

The differences between the various HTTP 3XX redirect codes are not clear to me. Yes, I've read the spec, but there seems to be some discrepancy between the standard and actual practice here. The ...
10
votes
3answers
618 views

URI starting with two slashes … how do they behave?

lately I saw !working! code-blocks like this: <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> And according to RFC 2396 (URI ...
10
votes
4answers
5k views

Converting a URI path to a relative file system path in .NET

How do I convert an absolute or relative URI path (e.g. /foo/bar.txt) to a (segmentwise) corresponding relative file system path (e.g. foo\bar.txt) in .NET? My program is not an ASP.NET application.
10
votes
6answers
663 views

Is an e-mail address a URI?

I've tried to figure out whether the format of an e-mail address can be said to comply with the definition of a URI or not, but I've found no explicit confirmation of this so far. I hope someone can ...
10
votes
2answers
2k views

How to get Uri.EscapeDataString to comply with RFC 3986

The Uri class defaults to RFC 2396. For OpenID and OAuth, I need Uri escaping consistent with RFC 3986. From the System.Uri class documentation: By default, any reserved characters in the URI ...
10
votes
1answer
2k views

C#/.NET: Replace host in Uri

What is the nicest way of replacing the host-part of an Uri using .NET? I.e.: string ReplaceHost(string original, string newHostName); //... string s = ReplaceHost("http://oldhostname/index.html", ...
9
votes
7answers
980 views

What do you call the entire first part of a URL?

If I have a URL like: http://www.example.com:9090/test.html Then I know that www.example.com is the host name, but what do you call http://www.example.com:9090? Is there some kind of established ...
9
votes
5answers
610 views

REST best-practice for overlong URIs

I have REST services which should receive really long queries via GET. Say for example I want to query a service with many geographical coordinates to find out something about all this coordinates. ...
9
votes
5answers
3k views

Example of a URI that isn't a URL?

It's been explained to me numerous times that all URLs are URIs but not all URIs are URLs. Can anyone give an example of something that is a URI but is not a URL?
9
votes
6answers
3k views

Pros and cons of using md5 hash of URI as the primary key in a database

I'm building a database that will store information on a range of objects (such as scientific papers, specimens, DNA sequences, etc.) that all have a presence online and can be identified by a URL, or ...
8
votes
3answers
701 views

What is the semicolon reserved for in URLs?

The RFC 3986 URI: Generic Syntax spec lists a semicolon as a reserved (sub-delim) character: reserved = gen-delims / sub-delims gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" sub-delims ...
8
votes
2answers
8k views

c# type to handle relative and absolute URI's and local file paths

I have a use cases where I will be dealing with both local file paths (e.g. c:\foo\bar.txt) and URI's (e.g. http://somehost.com/fiz/baz). I also will be dealing with both relative and absolute paths ...
8
votes
4answers
7k views

Method to determine if path string is local or remote machine

What's the best way, using C# or other .NET language, to determine if a file path string is on the local machine or a remote server? It's possible to determine if a path string is UNC using the ...
7
votes
1answer
130 views

Scala or Java Library for fixing malformed URIs

Does anyone know of a good Scala or Java library that can fix common problems in malformed URIs, such as containing characters that should be escaped but aren't?
7
votes
2answers
1k views

UriFormatException : Invalid URI: Invalid port specified

The assembly qualified string used as a parameter below for a Uri works in xaml, but gets me the error shown when used in code. I tried every kind of UriKind with the same result. How can I fix ...
7
votes
3answers
1k views

How to check that a uri string is valid

How do you check that a uri string is valid (that you can feed it to the Uri constructor)? So far I only have the following but for obvious reasons I'd prefer a less brute way: Boolean ...
6
votes
1answer
132 views

System.Uri class truncates trailing '.' characters

If I create a Uri class instance from string that has trailing full stops - '.', they are truncated from the resulting Uri object. For example in C#: Uri test = new Uri("http://server/folder.../"); ...
6
votes
2answers
191 views

c# Uri loading non deterministic?

I am trying to load some BitmapImages from files held on the file system. I have a dictionary of keys and relative filepaths. Unfortunately the Uri constructor seems non deterministic in the way that ...
6
votes
1answer
3k views

how to get an uri of an image resource in android

I need to open an intent to view an image as follows: Intent intent = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.parse("@drawable/sample_1.jpg"); intent.setData(uri); startActivity(intent); The ...
6
votes
1answer
536 views

Best practices on using URIs as parameter value in REST calls

I am designing a REST API where some resources can be filtered through query parameters. In some cases, these filter values would be resources from the same REST API. This makes for longish and pretty ...
6
votes
3answers
228 views

Should a given URI in a RESTful architecture always return the same response?

This is kind of a follow-up question to this one. So is having a unique response for any given URI a core tenant of RESTful architecture? A lot of discussion here tends that direction, but I haven't ...
6
votes
2answers
10k views

Android: howto parse URL String with spaces to URI object?

I have a string representing an URL containing spaces and want to convert it to an URI object. If is simple try to do String myString = "http://myhost.com/media/mp3s/9/Agenda of swine - 13. ...
6
votes
2answers
12k views

Android - Querying the SMS ContentProvider?

I currently register a content observer on the following URI "content://sms/" to listen out for incoming and outgoing messages being sent. This seems to work ok and I have also tried deleting from ...
6
votes
1answer
200 views

Incorrect new Uri(base, relative) behaviour in .NET

When you create a new Uri like this: New Uri(New Uri("http://example.com/test.php"),"?x=y") it returns: http://example.com/?x=y It was supposed to return: http://example.com/test.php?x=y ...
6
votes
2answers
366 views

Working with relative file paths in .Net

I have a C# project where I include some resources which I need to refer using the Uri-class. For this specific problem I have some shaders placed in a "Shaders" folder in the root of the project, but ...
6
votes
4answers
4k views

How do I pass a datetime value as a URI parameter in asp.net mvc?

I need to have an action parameter that has a datetime value? Is there a standard way to do this? I need to have something like: mysite/Controller/Action/21-9-2009 10:20 but I'm only succeeding ...
6
votes
4answers
814 views

Alternative to .NET's Uri implementation?

I have a problem with the .NET's Uri implementation. It seems that if the scheme is "ftp", the query part is not parsed as a Query, but as a part of the path instead. Take the following code for ...
5
votes
3answers
286 views

.Net Uri Encoding RFC 2396 vs RFC 3986

First, some quick background... As part of an integration with a third party vendor, I have a C# .Net web application that receives a URL with a bunch of information in the query string. That URL is ...
5
votes
6answers
378 views

Is this a good way to match URI to class/method in PHP for MVC

I am new to MVC so this is my first attempt and I am sure you guys can give me improvement on this, thanks for any tips or help! Below is what I have come up with for a router/dispatcher system for ...
5
votes
1answer
88 views

Is there a URI equivalent of Path.PathSeparator in .NET?

I need to build up a URI path from string values and I'm combining them together. Is there a URI constant for the / separator value as there is for Path.PathSeparator?
5
votes
2answers
249 views

Regular expression for W3C compliant URLs?

I'm trying to find a regular expression for a URL that will be compliant with the W3C standard for the HTML5 "url" input type (to be used in JavaScript). See the W3C specification of the ...
5
votes
3answers
489 views

“save” current page state using javascript

What I'm trying to do is have a function create a uri anchor to redraw/rerender/(call it what you want) the entire page Basically I want to be able to convert any page into a URI scheme so that when ...
5
votes
5answers
223 views

Finding matching portions of two strings in PHP

I'm looking for a simple way to find matching portions of two strings in PHP (specifically in the context of a URI) For example, consider the two strings: ...

1 2 3 4 5 20