url tag

36 questions


1 answers
101 views
0
How to post incorrect byte characters such as curl

I want to test the web app, but I don't know how to post characters like \xff as parameters.Is there any way like this?

1 years ago

1 answers
94 views
0
Last-Modified Not Included

I would like to confirm the last update date of the site, but when I looked at the contents of the source, it was not written.So I checked the response header with the following command, but there was...

1 years ago

2 answers
67 views
0
Why is 'http:' appended to a string combination that only appears to start with '//' at the beginning of a string?

I am a beginner at JavaScript.I am also reading click.js to study JavaScript.I'm going to read the click site while debugging on chrome.http://kenwheeler.github.io/slick/While I was looking at , on li...

1 years ago

1 answers
72 views
0
The java.net.URLEncoder.code(String) was deprecated. What should I write instead of this?

java.net.URLEncoder.encode I was going to use thiswarning: [deprecation] encode(java.lang.String) in java.net.URLEncoder has been deprecatedI got this warning. So what should I write instead of that?


1 answers
76 views
0
Simple way to read json from a URL in Java

It might be a stupid question, but what's the simplest way to parse and read JSON from a URL in Java? Groovy only needs a few lines of code, but all the Java examples I found are ridiculously long cod...

1 years ago

1 answers
91 views
0
How to get the current URL from JavaScript

I use jQuery. How can I get the current URL path?For examplehttp://localhost/menuname.de?foo=bar&number=0I mean, this url.

1 years ago

1 answers
48 views
0
(Correction) Python HTTP Error: Forbidden Question!

I want to download it from the same address. There are too many to do manually, so I thought it would be simple, so I coded it. It says HTTPError: Forbidden.Without %06 just 1, 2, 3, 4... It worked we...

1 years ago

1 answers
45 views
0
If there is a prev button next button, can I change the URL by making it i-- when I press the prev button, and i++ when I press the next button?

var prevBtn = document.getElementById(prev);var nextBtn = document.getElementById(next);var i = 0;var getPathname = window.location.pathname;var repetitivePath = getPathname.substring(0, getPathname.l...

1 years ago

1 answers
121 views
0
I want to open the URL with my Android web browser on my app

try { Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link)); startActivity(myIntent); } } catch (ActivityNotFoundException e) { Toast.makeText(this, No application can handle t...


1 answers
45 views
0
In the URL GET parameter ?What is the meaning of parentheses in aa={ab-cd-ef}?

I saw the URL using brackets as below.I'd like to know why you used braces and if it's possible to remove braces.www.aaa.com/abc?zz={ab-cd-ef}

url
1 years ago
« - 3 - »

© 2024 OneMinuteCode. All rights reserved.