2

I'm trying to use HTTP GET and POST in Java but I can't import java.net.http. I have very little knowledge about this area, do I need to install something?

Shane Bishop
  • 3,905
  • 4
  • 17
  • 47
Insanit
  • 37
  • 1
  • 8

1 Answers1

3

The problem is connected with the version of Java/JRE that exist in your system because the package "java.net.http" was included in Java 11 or up.

Try to download a new version of java from one of these sites Oracle JDK 11 or Open JDK

After installing the new version of Java check that Eclipse uses the correct one. To do this in your Eclipse go to Preferences -> Java -> Compiler and select 11, also go to Preferences -> Java -> Installed JRE and add the new JRE

Andres Sacco
  • 650
  • 3
  • 13