vishnuagrawal.blogspot.com vishnuagrawal.blogspot.com

vishnuagrawal.blogspot.com

Enjoy The Life .......

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: Compare two JSON strings. Following is the code to parse two json strings and compare them. SrcJsonMap = new LinkedHashMap. DestJsonMap = new LinkedHashMap. SrcJsonMap = parseJson(" , srcJson, srcJsonMap); destJsonMap = parseJson(" , destJson, destJsonMap); / union Set. Union = new HashSet. SrcJsonMap.keySet() ; union.addAll(destJsonMap.keySet() ; / h1-h2 Set. Diff1 = new HashSet. Diff2 = new HashSet.

http://vishnuagrawal.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR VISHNUAGRAWAL.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.4 out of 5 with 11 reviews
5 star
5
4 star
5
3 star
1
2 star
0
1 star
0

Hey there! Start your review of vishnuagrawal.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • vishnuagrawal.blogspot.com

    16x16

  • vishnuagrawal.blogspot.com

    32x32

  • vishnuagrawal.blogspot.com

    64x64

  • vishnuagrawal.blogspot.com

    128x128

CONTACTS AT VISHNUAGRAWAL.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Enjoy The Life ....... | vishnuagrawal.blogspot.com Reviews
<META>
DESCRIPTION
Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: Compare two JSON strings. Following is the code to parse two json strings and compare them. SrcJsonMap = new LinkedHashMap. DestJsonMap = new LinkedHashMap. SrcJsonMap = parseJson( , srcJson, srcJsonMap); destJsonMap = parseJson( , destJson, destJsonMap); / union Set. Union = new HashSet. SrcJsonMap.keySet() ; union.addAll(destJsonMap.keySet() ; / h1-h2 Set. Diff1 = new HashSet. Diff2 = new HashSet.
<META>
KEYWORDS
1 skip to main
2 skip to sidebar
3 map { try{ iterator
4 0 comments
5 labels java
6 json
7 labels selenium
8 labels shell scripting
9 and activation jar
10 command
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to main,skip to sidebar,map { try{ iterator,0 comments,labels java,json,labels selenium,labels shell scripting,and activation jar,command,instead of iexplore,installing cybervillains certificate,labels linux,shell scripting,solaris,older posts,posts
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Enjoy The Life ....... | vishnuagrawal.blogspot.com Reviews

https://vishnuagrawal.blogspot.com

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: Compare two JSON strings. Following is the code to parse two json strings and compare them. SrcJsonMap = new LinkedHashMap. DestJsonMap = new LinkedHashMap. SrcJsonMap = parseJson(" , srcJson, srcJsonMap); destJsonMap = parseJson(" , destJson, destJsonMap); / union Set. Union = new HashSet. SrcJsonMap.keySet() ; union.addAll(destJsonMap.keySet() ; / h1-h2 Set. Diff1 = new HashSet. Diff2 = new HashSet.

INTERNAL PAGES

vishnuagrawal.blogspot.com vishnuagrawal.blogspot.com
1

Enjoy The Life .......: Java: parse a JSON string

http://vishnuagrawal.blogspot.com/2015/08/java-parse-json-string.html

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: parse a JSON string. Following is the code to parse a json string. Import java.util.Iterator; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; public class TestJson1{ private static String jsonStr = ". Iterator = jsonObject.keys(); while(iterator.hasNext() { String obj = iterator.next().toString(); String keyVal = (key.equals(" )? Posted by Vishnu Agrawal.

2

Enjoy The Life .......: November 2012

http://vishnuagrawal.blogspot.com/2012_11_01_archive.html

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Wednesday, November 28, 2012. Shell script: format numbers. Shell script to format date in yyyy.mm.dd format. Bin/bash year=2012 for ( c=1; c. Posted by Vishnu Agrawal. Java : Send Email. Following is the code to send email using java. Download mail.jar. To run the program. Posted by Vishnu Agrawal. Subscribe to: Posts (Atom). View my complete profile. Shell script: format numbers. Java : Send Email.

3

Enjoy The Life .......: Selenium: Testing auto complete fields

http://vishnuagrawal.blogspot.com/2012/06/selenium-testing-auto-complete-fields.html

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Friday, June 8, 2012. Selenium: Testing auto complete fields. Selenium's "type" command does not trigger auto complete feature to give suggestion. We can use "typeKeys" method to simulate auto complete. Here is the sample code for this:. Here we are first entering value in the text field, then using selenium's 'typeKeys' method to press 'space' character and then 'backspace' ( b) character. Posted by Vishnu Agrawal.

4

Enjoy The Life .......: December 2011

http://vishnuagrawal.blogspot.com/2011_12_01_archive.html

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Wednesday, December 14, 2011. Running multiple version of firefox. If you want to run multiple versions of firefox on same machine, follow below steps:. 1 Close your all running instances of firefox. 2 Download older versions of firefox from http:/ www.oldversion.com/Mozilla-Firefox.html. And do a custom install, install them on a specific version directory. For example I installed them as below:. Posted by Vishnu Agrawal. Null)...

5

Enjoy The Life .......: Java: Store Json String into a Java Map

http://vishnuagrawal.blogspot.com/2015/08/java-store-json-string-into-java-map.html

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: Store Json String into a Java Map. Following is the code to parse a json string and store the structure in Map. Map = new LinkedHashMap. Try{ parseJson(" , jsonObject, map); for(String key: map.keySet() { System.out.println(key ": " map.get(key) ; } } catch(Exception e){ e.printStackTrace(); } } public static Map. ParseJson(String key, JSONObject jsonObject, Map. Posted by Vishnu Agrawal.

UPGRADE TO PREMIUM TO VIEW 13 MORE

TOTAL PAGES IN THIS WEBSITE

18

LINKS TO THIS WEBSITE

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

Screen command | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/2007/10/14/screen-command

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Laquo; Is it the Chak De India effect? October 14, 2007 by vishnuagrawal. Screen, this command might not be well known to many people but but its one of those programs that you just can’t stop using once you’ve started. Previously I used VNC to connect the remote servers, but now i have stopped using VNC. Now I am using SCREEN on a regular daily basis and it’s really easy to use. Screen program provides the following functionality:. Ctrl a ...

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

Linux Tips | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/2007/09/09/linux-tips

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Laquo; Soalris: Kill a process which is using a particular port number. September 9, 2007 by vishnuagrawal. Display the top most process utilizing most CPU (top -b 1). Show the working directory of a process? Display the parent/child tree of a process? Display the no.of active established connections to localhost? Netstat -a grep EST). How to create null file? Display top ten largest files/directories? Du -sk * sort -nr head). O Travel in "...

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

Is it the Chak De India effect? | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/2007/09/30/is-it-the-chak-de-india-effect

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Laquo; Linux Cut command. Is it the Chak De India effect? September 30, 2007 by vishnuagrawal. First Indian football team won Nehru Cup, then Indian Hockey Team won the Asia cup and then it was the turn of Indian cricket team, They won the 20-20 World cup and then Vishwanathan Anand became the World Chess champion. All these 4 big events happened in just in a span of almost one month. Isn’t it the CHAK DE INDIA effect? 8230;……. On October 1...

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

Linux Cut command | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/2007/09/09/linux-cut-command

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Laquo; Linux Tips. Is it the Chak De India effect? September 9, 2007 by vishnuagrawal. 8212;———. Divide a file into several parts (columns). Cut [-b] [-c] [-f] list [-n] [-d delim] [-s] [file]. 8212;—–. 1 Let say you have a file test.txt which has colon(:) seperated data. If you want to print first set of data from each row, you can use cut command as follow:. Cut -d”:” -f1 test.txt. Cut -c1-6 test.txt. Posted in linux command.

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

vishnuagrawal | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/author/vishnuagrawal

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Posts by Vishnu Agrawal:. October 14, 2007. October 14, 2007. September 30, 2007. Is it the Chak De India effect? September 9, 2007. September 9, 2007. September 5, 2007. Soalris: Kill a process which is using a particular port number. May 2, 2007. Older Posts ». Is it the Chak De India effect? Soalris: Kill a process which is using a particular port number. O Travel in "Palace on Wheels" o Go for a "World Tour".

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

Testing Articles | "Enjoy the LIFE............"

https://vishnuagrawal.wordpress.com/2007/10/14/testing-articles

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. Laquo; Screen command. October 14, 2007 by vishnuagrawal. Living Life as Tester. Posted in testing article. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out.

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

7

OTHER SITES

vishnu96.blogspot.com vishnu96.blogspot.com

Vishnu

Friday, May 6, 2016. Subscribe to: Posts (Atom). View my complete profile. Watermark theme. Powered by Blogger.

vishnu99.wordpress.com vishnu99.wordpress.com

Vishnu99's Blog | Just another WordPress.com weblog

Just another WordPress.com weblog. October 28, 2014. We plan to recruit the below streams with 60% and above aggregate marks in their academics ( 10th , 12th and Graduation/Post Graduation). Streams : 2014 BE/BTech ( CSE,IT,ECE,EEE,EIE/ICE) and 2014 MCA pass out’s. 2013/2014 B.Sc(CS/IT/Electronics) and BCA pass out’s. Scheduled off campus drives. You can refer interested candidates to appear directly at the below mentioned venue for the selection process. The reporting time would be 8.30 am. May 7, 2014.

vishnuacademy.wordpress.com vishnuacademy.wordpress.com

VISHNU ACADEMY | A Free Service by Haindava Thiruvalam

A Free Service by Haindava Thiruvalam. August 26, 2012. A Free Service by Haindava Thiruvalam. Welcome to VISHNU ACADEMY OF RANIPET – A Site Under Construction. Contact for details Sivan T at thiruvalamsivan [at] yahoo [dot] com. த ர வலத த ல பரத ந ட ட ய அங க ற றம. அர ட த ர தன ர மத ய ம ப ள சம த த ர வ ல வந தர த ர ச சன னத ய ல 20-08-2012 அன ற வ க வ மர ச ய க ந ற வட ந த அரங க ற றம ந கழ வ ன ச ல க ட ச கள . த ர மத . ஜ யப ரத சந த ஷ க ம ர. த ர மத . ஜ யப ரத சந த ஷ க ம ர. Click to share on Google (Opens in new window).

vishnuacp.com vishnuacp.com

Welcome to Vishnu Asbestos Cement Products.com

vishnuagencies.com vishnuagencies.com

Vishnu Agencies

XIV / 1769 A, R.K.Pillai Road,. Karuvelipady, Kochi - 682 005. Phone: 91 484 2228022(O) 2228028(R). Cell: 91 098471 80444. Fax: 91 - 484 - 2228078 E-mail: vishnuage@sify.com. Site Designed and Hosted by FlashWebHost.com.

vishnuagrawal.blogspot.com vishnuagrawal.blogspot.com

Enjoy The Life .......

Enjoy The Life . Linux, Solaris, Scripting, Testing, QA, Database, Puzzles . Sunday, August 9, 2015. Java: Compare two JSON strings. Following is the code to parse two json strings and compare them. SrcJsonMap = new LinkedHashMap. DestJsonMap = new LinkedHashMap. SrcJsonMap = parseJson(" , srcJson, srcJsonMap); destJsonMap = parseJson(" , destJson, destJsonMap); / union Set. Union = new HashSet. SrcJsonMap.keySet() ; union.addAll(destJsonMap.keySet() ; / h1-h2 Set. Diff1 = new HashSet. Diff2 = new HashSet.

vishnuagrawal.wordpress.com vishnuagrawal.wordpress.com

"Enjoy the LIFE............" | Dreams are necessary to keep life in motion

Enjoy the LIFE…………. Dreams are necessary to keep life in motion. October 14, 2007 by vishnuagrawal. Living Life as Tester. Posted in testing article. October 14, 2007 by vishnuagrawal. Screen, this command might not be well known to many people but but its one of those programs that you just can’t stop using once you’ve started. Previously I used VNC to connect the remote servers, but now i have stopped using VNC. Now I am using SCREEN on a regular daily basis and it’s really easy to use. Ctrl a 0-9 Sele...

vishnuags-maps.com vishnuags-maps.com

Sree vishnu Agencies

ALL KIND OF TOYS . ALL OFFICE STATIONERIES . POL & PHY & GEO MAPS. HISTORICAL & OUTLINE MAPS. NURSERY CHART and STORY CHARTS. REFERENCE MAP INDIA and WORLD. SCIENCE CHARTS and MODELS.

vishnualter.wordpress.com vishnualter.wordpress.com

Vishnualter's Blog | Just another WordPress.com site

Just another WordPress.com site. Capacitors for Radio Frequency EM Interference Suppression Application. April 8, 2013. Noise suppression capacitors can improve the reliability, safety and performance in the radio circuits. This paper gives an idea of what is noise suppression, importance of noise suppression and noise suppression capacitor types . Index terms: RFI/EM Interference, Noise suppression. Types of noise suppression using capacitors:. The noise suppression capacitors are subjected to not only ...

vishnuanchal.blogspot.com vishnuanchal.blogspot.com

പാവം ഞാന്‍

പാവം ഞാന്‍. 2012, മേയ് 22, ചൊവ്വാഴ്ച. എന്നു സ്നേഹത്തോടെ പരേതന്‍! സ്വപ്ന സാക്ഷാല്‍ക്കാരം! അമ്മ എവിടെ? ഞാന്‍ പടി കയറി എന്റെ മുറിയില്‍ എത്തി . അഹ! ഇവിടെ ഉണ്ടാരുന്നോ. മീന്‍ വെട്ടുമ്പോള്‍ കൈ മുറിഞ്ഞാല്‍ തോന്നുന്നത്ര വേദനയെ അമ്മക്കുള്ളൂ. അല്ലെ? പപ്പനും ഞാനും അത്രേ കരുതിയുള്ളു . പിടിവലി ആയി . എങ്ങോട്ടടി . ഇങ്ങോട്ടടി! ഒടുവില്‍ ക്ഷീണിച്ച പപ്പന്‍ ഒരിടത്ത് 'ഇരുന്നു' . അവനു മുന്നേ അവ&#339...മനസ്സില്‍ എന്താന്നില്ലാത്ത ഒരു ആത്മ-സംത&#33...ഞാന്‍ കണ്ണ് തുടച്ചു . വീടിന്റെ മുന്നില&...ആ സംശയം എന്നെ വ...ഞാന്&#820...ചോറ...

vishnuandarundevelopers.com vishnuandarundevelopers.com

VISHNU & ARUN DEVELOPERS

Mob: 91 87540 44080 81 82 91 98947 45062. Welcome to Vishnu and Arun Developers. We, at V&A developers are comitted to offering quality homes at affordable price, which is a common dream among the middle class today. With land prices soaring beyond affordable limits, we strike the perfect balance between price, location for easy access and required amenities, with a delicate touch of nature around, but with absolutely no compromise on quality and customer satisfaction. We bring together the finest in cos...