harish raghavan

Greenhorn
+ Follow
since Jan 18, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by harish raghavan

Hello people...i have a doubt...i have done a program on storing the HTML source of a webpage...my system uses Direct IP and i got the output...but when i execute in LAN i get the exception Source genration error...i found the problem is due to proxy connection...can u ppl let me know how to setup proxy and make this code work...please modify this code and send me so that it works on a LAN environment...ASAP please

public int source(String linkpass)
{
StringBuffer strBuf = new StringBuffer();
URL page;
InputStreamReader in;
BufferedReader data;
String line;
URLConnection conn = null;
try
{
page = new URL(linkpass);
conn = page.openConnection();
conn.connect();
in = new InputStreamReader(conn.getInputStream());
data = new BufferedReader(in);
while ((line = data.readLine()) != null)
strBuf.append(line + "\n");
}
catch(Exception e)
{
System.out.println("Source generation error");
}
}
Hello people.
I want to find distance between words present in a sentence.the words and sentence are given as input and the distance(no.of words between) should be the output.
Say this is a sentence
"Hello iam doing fine how about you and how is life?" and my input of words is "iam" and "life" it should give ouput as 8(the no.if words inbetween).here input can be given many words also.
18 years ago
oh god..thanks for helping me..really thanks..
18 years ago
yeah...say for example

http://www.google.co.in/search?hl=en&q=computer+networks&meta=

this is the google result of computer network..i need the HTML source of this stored in a file...please help me
18 years ago
Hello people...iam right now developing a page re-ranking algorithm...sorting the results of google on a user query...for that i need to grab the HTML source code of google serach result..
can u plz send me a program on how to grab the html source of google search result page and save it in file..please help me
18 years ago
code to extract features of multimedia data
code for retrieving properties of multimedia data like brightness, color, volume level etc...
18 years ago
code for retrieving properties of multimedia data like brightness, color, volume level etc...