rahularaveti27 Posted July 26, 2013 Report Posted July 26, 2013 idi ela chestaru?anyone please explain
ZuniorVentiyar Posted July 26, 2013 Report Posted July 26, 2013 LTT [quote name='rahularaveti27' timestamp='1374862939' post='1304014470'] [b] List arr = {1,2,3, 1,1, 3,1}. Write a program to get the print no of 1's,2's and 3's[/b] [/quote]
innovative Posted July 26, 2013 Report Posted July 26, 2013 [quote name='rahularaveti27' timestamp='1374862939' post='1304014470'] [b] List arr = {1,2,3, 1,1, 3,1}. Write a program to get the print no of 1's,2's and 3's[/b] [/quote] [quote name='rahularaveti27' timestamp='1374862960' post='1304014474'] idi ela chestaru?anyone please explain [/quote] completely agreed with Java01. try it out or ekkada dhaka rasaro post cheyyandi . we can go from there [size=4] [/size] [quote name='Java01' timestamp='1374865109' post='1304014763'] try it man .... u might get errors but u will learn it .... simple eee kadha oka prayatnam chesi chudu [/quote] +1
kiran karthik Posted July 27, 2013 Report Posted July 27, 2013 [quote name='rahularaveti27' timestamp='1374862939' post='1304014470'] [b] List arr = {1,2,3, 1,1, 3,1}. Write a program to get the print no of 1's,2's and 3's[/b] [/quote] type mismatch u can't declare an int[] to list
kiran karthik Posted July 27, 2013 Report Posted July 27, 2013 [quote name='rahularaveti27' timestamp='1374862960' post='1304014474'] idi ela chestaru?anyone please explain [/quote] [size=4]List<Integer> list= Arrays.asList(1,2,3,4, 2,1);[/size] [size=4]Set<Integer> set1 = new TreeSet<Integer>(list); [/size] System.out.println(set1);
cherlapalli_jailer Posted July 27, 2013 Report Posted July 27, 2013 Hi @inno and other sample Spring project code links vunte ikkada veyyanidi will be useful for other.. should be bit advanced
anish Posted July 27, 2013 Report Posted July 27, 2013 I'm looking for JAVA/J2EE training, meeku evarikanna manchi trainer unte cheppandi plz..
cherlapalli_jailer Posted July 27, 2013 Report Posted July 27, 2013 [quote name='anish' timestamp='1374933494' post='1304018318'] I'm looking for JAVA/J2EE training, meeku evarikanna manchi trainer unte cheppandi plz.. [/quote] online lo chaala manchi videos vunnayi try it in youtube... if u r in bay area then u can find lot of ppl giving in class traning so what type of training u r looking?
innovative Posted July 27, 2013 Report Posted July 27, 2013 [quote name='cherlapalli_jailer' timestamp='1374933299' post='1304018313'] Hi @inno and other sample Spring project code links vunte ikkada veyyanidi will be useful for other.. should be bit advanced [/quote] project links ante kastam jailer .. one best thing we can do is to dig githubs ..
innovative Posted July 28, 2013 Report Posted July 28, 2013 One more good book on Core Java - [url="http://www.greenteapress.com/thinkapjava/thinkapjava.pdf"][b]Think Java[/b][/url] by [size=4]Allen B. Downey[/size]
anish Posted July 28, 2013 Report Posted July 28, 2013 [quote name='cherlapalli_jailer' timestamp='1374938238' post='1304018442'] online lo chaala manchi videos vunnayi try it in youtube... if u r in bay area then u can find lot of ppl giving in class traning so what type of training u r looking? [/quote] I'm looking for online training, class room training ante kastam emo, I'm working in SAP , want to come out of that ,youtube videos ante complete end -end training unnaya ?
sherlockholmes_anon Posted July 29, 2013 Report Posted July 29, 2013 [CODE] [size=4]package com.oreilly.springdata.roo.web; import org.springframework.core.convert.converter.Converter; import org.springframework.format.FormatterRegistry; import org.springframework.format.support.FormattingConversionServiceFactoryBean; import org.springframework.roo.addon.web.mvc.controller.converter.RooConversionService; import com.oreilly.springdata.roo.domain.EmailAddress; /** * A central place to register application converters and formatters. */ @RooConversionService public class ApplicationConversionServiceFactoryBean extends FormattingConversionServiceFactoryBean { @Override protected void installFormatters(FormatterRegistry registry) { super.installFormatters(registry); // Register application converters and formatters registry.addConverter(getStringToEmailAddressConverter()); registry.addConverter(getEmailAddressConverterToString()); } public Converter<String, EmailAddress> getStringToEmailAddressConverter() { return new Converter<String, EmailAddress>() { @Override public EmailAddress convert(String source) { EmailAddress emailAddress = new EmailAddress(); emailAddress.setAddress(source); return emailAddress; } }; } public Converter<EmailAddress, String> getEmailAddressConverterToString() { return new Converter<EmailAddress, String>() { @Override public String convert(EmailAddress source) { return source.getAddress(); } }; } }[/size] [/CODE]
sherlockholmes_anon Posted July 29, 2013 Report Posted July 29, 2013 [quote name='anish' timestamp='1374972203' post='1304020226'] I'm looking for online training, class room training ante kastam emo, I'm working in SAP , want to come out of that ,youtube videos ante complete end -end training unnaya ? [/quote] try lynda.com,totaltraining,wrox,digital tutors and video2brain tutorials
Recommended Posts