function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Prakash@SFDCPrakash@SFDC 

Streaming API in Java

I am implementing streaming api in JAVA . For this we need import some JAR files into the JAVA project . Along with that we need to download JSON.org java code and have to add that to the project .But I could not download that file , the URL provide by SFDC documentation is not exist . PFB URL .
https://developer.salesforce.com/page/Getting_Started_with_the_Force.com_Streaming_API

Please guide me from where I can get that file ? 
NagaNaga (Salesforce Developers) 
Hi Keertan,

To access REST resources, you’ll need to install HttpClient and JSON frameworks. HttpClient lets you access HTTP resources. The JSON framework lets you generate and parse JSON request and response data.

You’ll need to have the JDK installed on your local system to use the HttpClient and JSON frameworks.

Navigate to http://hc.apache.org/downloads.cgi in your browser and download the binary archive of the latest “GA” version of HttpClient. Un-archive the downloaded file and move the directory to a location you’ll remember.

Navigate to http://mvnrepository.com/artifact/org.json/json in your browser and download the latest binary .jar file. Copy this .jar file to a location you’ll remember. 

Please see the link below :
https://help.salesforce.com/help/pdfs/en/salesforce_developer_environment_tipsheet.pdf

Best Regards
Naga kiran