how to replace "(double quotes) in a string with \" in java | How do I retrieve query parameters in a Spring Boot controller? | Storing a new object as the value of a hashmap?
Tutorial 
									
								    	by Er Satya
								         
									
								
Example -
str = str.replace("\"", "\\\"")
Avoid using replaceAll since it uses regex syntax in description of what to replace and how to replace, which means that \ will have to be escaped in string "\\" but also in regex \\ (needs to be written as "\\\\" string) which means that we would need to use.
str = str.replaceAll("\"", "\\\\\"");
str = str.replaceAll("\"", Matcher.quoteReplacement("\\\""))
How do I retrieve query parameters in a Spring Boot controller?
Use @RequestParam
@RequestMapping(value="user", method = RequestMethod.GET)
public @ResponseBody Item getItem(@RequestParam("data") String empId){
    Emp i = empDao.findOne(empId);              
    String EmpName = i.getEmpName();
    String dept= i.getDept();
    return i;
}Storing a new object as the value of a hashmap?
HashMap mapper = new HashMap();
mapper.put("Satya", new Emp("Satya"));
...
Emp value = mapper.get("Satya");
Integer memory = value.getMemory();  
More articles from same author:
More articles:
Recent lost & found:
Login for enhanced experience
 Create and manage your profile
 Create and manage your profile
 Refer an author and get bonus Learn more
 Refer an author and get bonus Learn more
 Publish any lost and found belongings
 Publish any lost and found belongings
 Connect with the authors & add your review comments
 Connect with the authors & add your review comments
 Join us for Free to advertise for your business or 
					Contact-us for more details
				
					Join us for Free to advertise for your business or 
					Contact-us for more details
			
 Join us for Free to publish your own blogs, articles or tutorials and get your 
					Benefits
				
					Join us for Free to publish your own blogs, articles or tutorials and get your 
					Benefits
			
Discover your area of interest
Advertisement
Art & entertainment
Astrology & spirituality
Cooking
Culture
Current affairs
Education
Fashion
History
Hotel management
Industry
Medical & fitness
Motivational
Politics
Real life stories
Sports
Story & poetry
Technology
Top in search
Tourism
More recent categories
Preschool(Public)
By: BrainBunny
Education(Public)
By: James
fashion(Public)
By: Exact
Suicidal in Australia(Public)
By: nembutalaustralia
Euthanasia in Australia(Public)
By: nembutalaustralia
business(Public)
By: JSV
Employee productivity software(Public)
By: Shaik
Others(Public)
By: Sunny
Health(Public)
By: Chennai
history(Public)
By: Nirupama
 
						 1 like
													1 like
												 
      
