Jump to content

Java/j2Ee Discussions


lolliman

Recommended Posts

[quote name='innovative' timestamp='1372378373' post='1303898122']
yes ..
[/quote]

if steps are easy to cut/type and past and have time then can please share

Link to comment
Share on other sites

[quote name='HAPPYNESS' timestamp='1372352168' post='1303896292']
Dollar 60 unnappudu flight ticket konna bokke...$650 petti...neneu raanu ...Dollar thaggaka vasta
[/quote]
@3$% @3$%

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372378468' post='1303898127']

if steps are easy to cut/type and past and have time then can please share
[/quote]

jailer .. how to install in eclipse kavala or how to use it in eclipse kavala ..

Link to comment
Share on other sites

[quote name='innovative' timestamp='1372378881' post='1303898135']

jailer .. how to install in eclipse kavala or how to use it in eclipse kavala ..
[/quote]
how to plug in maven into eclipse

Link to comment
Share on other sites

[quote name='CNATION1' timestamp='1372378449' post='1303898126']
meeku javascripting ocha... oka chinna jsp page lo oka change cheyali..
[/quote]

mee doubt ento adagandi .. thelisthe help chesthar kada ...

naaku koncham idea vundhi ..

Link to comment
Share on other sites

[quote name='CNATION1' timestamp='1372378449' post='1303898126']
meeku javascripting ocha... oka chinna jsp page lo oka change cheyali..
[/quote]
java script and jquery best is google ...

still having difficulty then post it let us see

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372378919' post='1303898136']
how to plug in maven into eclipse
[/quote]

[url="http://www.roseindia.net/maven2/maven_2_eclipse_plugin.shtml"]http://www.roseindia.net/maven2/maven_2_eclipse_plugin.shtml[/url]

This link might be helpful..detail steps unnayi

  • Upvote 1
Link to comment
Share on other sites

[quote name='ICANWIN' timestamp='1372379156' post='1303898141']

[url="http://www.roseindia.net/maven2/maven_2_eclipse_plugin.shtml"]http://www.roseindia...se_plugin.shtml[/url]

This link might be helpful..detail steps unnayi
[/quote]
thanks yaar
@haapy see this also if it helps

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372378919' post='1303898136']
how to plug in maven into eclipse
[/quote]

Maven plugin eclipse lo kavali ante steps :

..first m2e ane plugin install cheskovali eclipse lo .. here is the [url="http://www.eclipse.org/m2e/"][b]link [/b][/url]for that
..i think plugin installation meeku thelise vuntadhi if not, Help-> Install new software -> Work with: Indigo -> General Purpose Tools -> m2e
...so after that ... [size=4]mee daggara already maven project vunte then dhanni import cheskoni then artifacts create cheskovali .. to do so command prompt lo give this command -> [/size][CODE]
mvn install:install-file
[/CODE]

.. then come back to eclipse and select project, then go to run-> run configurations and create a build path.
... new project create cheyyali ante .. proj explorer lo right click and select new -> maven project
... then proj create ayyaka it will create pom.xml automatically..
... so there after, em change chesina proj lo u need to right click that pom.xml and build it.

ivi install n how proj set up steps simple ga .. let me know .. if u get any doubts while installing ..

  • Upvote 1
Link to comment
Share on other sites

[quote name='innovative' timestamp='1372379860' post='1303898153']
Maven plugin eclipse lo kavali ante steps :

..first m2e ane plugin install cheskovali eclipse lo .. here is the [url="http://www.eclipse.org/m2e/"][b]link [/b][/url]for that
..i think plugin installation meeku thelise vuntadhi if not, Help-> Install new software -> Work with: Indigo -> General Purpose Tools -> m2e
...so after that ... [size=4]mee daggara already maven project vunte then dhanni import cheskoni then artifacts create cheskovali .. to do so command prompt lo give this command -> [/size][CODE]
mvn install:install-file
[/CODE]

.. then come back to eclipse and select project, then go to run-> run configurations and create a build path.
... new project create cheyyali ante .. proj explorer lo right click and select new -> maven project
... then proj create ayyaka it will create pom.xml automatically..
... so there after, em change chesina proj lo u need to right click that pom.xml and build it.

ivi install n how proj set up steps simple ga .. let me know .. if u get any doubts while installing ..
[/quote]
perfect....

Happyness here u have enough stuff

i will also try next week

thanks to @inno and @icanwin

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372379511' post='1303898148']
thanks yaar
@haapy see this also if it helps
[/quote]


Anytime dude :)

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372352869' post='1303896337']
chinni

idi malli pampu

u will not get this logic in net also so he will get impressed
[/quote]
interesting is i called same method with in that method which we rearly use


[color=#282828][font=helvetica, arial, sans-serif]public void [b]getBigFile([/b]String folderName){[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif]File folder = new File(folderName);[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif]File[] listOfFiles = folder.listFiles();[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif] for (int i = 0; i < listOfFiles.length; i++) {[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif]if (listOfFiles[i].isFile()) {[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif] String name = listOfFiles[i].getName();[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif]long size = listOfFiles[i].length() ;[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif]if(size > tempSize)[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif]tempSize = size ;[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif]//System.out.println("Size of the file is " +size) ;[/font][/color]

[color=#282828][font=helvetica, arial, sans-serif]} else if (listOfFiles[i].isDirectory()) {[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif] //System.out.println("Directory " + listOfFiles[i].getName());[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif][b]getBigFile(folderName+"\\"+listOfFiles[i].getName());[/b][/font][/color]
[color=#282828][font=helvetica, arial, sans-serif] [/font][/color]

[color=#282828][font=helvetica, arial, sans-serif]}[/font][/color]
[color=#282828][font=helvetica, arial, sans-serif] }[/font][/color]

Link to comment
Share on other sites

[quote name='cherlapalli_jailer' timestamp='1372380147' post='1303898160']
interesting is i called sam,e with in that method which we rearly use
[/quote]

agreed .. but good thought ... !!

Link to comment
Share on other sites

[quote name='Salividi' timestamp='1372422263' post='1303899084']
Bhayyas what is the difference between Core java, j2EE and Advanced java?
[/quote]
Core java ante ...

Basic JDK which will contain Applets, core functionalities like i will give some examples like util packages, io packages, etc..

J2EE enterprise edition means client server communication with servlets,jsp,rmi,ejb,cobra...

Advanced means : like the latest technologies struts,spring,hibernate ,,,so on..

J2Me is mobile edition

Link to comment
Share on other sites

×
×
  • Create New...