Given the url, how can you determine if the specified file and html file are there?
Obviously, this is an html file if it ends with .html or /, but there are also .jsp files, so I'm wondering what other extensions might be there for html.
Alternatively, if this information can be easily obtained from a URL object in Java, that would be enough for my purposes.
Just from a URL that you cannot, think of the following URLs:
HTML. - Content-TYpe. HEAD GET POST - .
URL url = ... HttpURLConnection urlc = (HttpURLConnection)url.openConnection(); urlc.setAllowUserInteraction( false ); urlc.setDoInput( true ); urlc.setDoOutput( false ); urlc.setUseCaches( true ); urlc.setRequestMethod("HEAD"); urlc.connect(); String mime = urlc.getContentType(); if(mime.equals("text/html") { // do your stuff }
. , , text/html.
. html URL-, .jpeg, .gif .mp3. - URL- Content-Type, , text/html ( 100% - -).
, URL- - . , , , , , , - , URL. , , , , 100% - , . , , , .
, , , .
. , , , , ( ). MIME-Type "Content-Type". text/html, html- ( , xhtml, HTML).
. .
URL REST,
http://yourserver.com/service/givemehtml/
html.
HTML - , , html , *.html, HTML-, *.jsp, *.php, *.asp .. html. , , -, .
. URL .html, html. spring, .html, html URL-, . .
Source: https://habr.com/ru/post/1711612/More articles:Appearance of RichTextBox - winformsCustom Navigation Chart Controls for Bing Maps (formerly Virtual Earth) to replace MS by default - bing-mapslinq to sql ExecuteQuery () as IQueryable - linqHow to define a column of type PasswordBox in a DataGrid? - wpfFree API for analyzing American mailing addresses? - apiLinux takes a screenshot for a specific workspace - linuxThe biggest group of friends together? - language-agnosticTeam Build - автоматически обновляемый агент после того, как стал недоступным - tfsOngoing insertions in Oracle when an exception occurs - sqlAndroid 1.5 Программирование с помощью TabHost и кнопок - javaAll Articles