I want to start but need some help

Hi
I am new to java. I want to ask you where I write the java code?? I want to work in J2SE platform, what are the s/w that I should download to allow me write and compile a code "the complete name of the softwar and the link if it is available on the web plzzz".
thank you

For the tools/software you can go to
http://www.eclipse.org
and then immediatly to this link
http://java.sun.com/docs/books/tutorial/information/download.html
in order to download a tutorial for the java language itself.
Have fun !

Similar Messages

  • New Member wanting to buy but needs some info..

    Hello all, I am new to this forum.
    I have found this forum in the search of information regarding these Wind Top pc's.
    Information is fairly thin on the net so I thought it best to join this forum and ask my questions here where I am sure I will get acurate answers.
    I have searched the threads here in but still need some clarification.
    My scenario is as follows:
    I want to use one of these AIO's mainly as a music and music video jukebox.
    Tv tuner, either built in or usb external would be good also.
    Sound output is to a set of active Audioengine A5 2.0 speakers.
    Ive been checking out a few other  brands like:
    Asus, Shuttle, HP, Lenovo and Gateway, though I like the look of the MSI ones the best.
    16 inch is realistically too small, 20 inch is just about right and 22 inch upwards may be a little big and probably a little to much like a fully fledged pc, which may be a little much for what I need?
    It will be placed in my Kitchen/Dining/Sitting room. Size is 8m x 6m.
    I dont really want to spend a fortune, maybe below a $1000 if possibe but definately not to much above $1000. I am in Australia, Tasmania actually and viewing/demoing is fairly non existant.
    The MSI 2020 or 2220 etc is probably at the top of my list.
    It looks similar to a large picture/photo frame as apposed to a fully fledged computer.
    I have attached my Audioengine A5's to my dell 15" laptop, T6400 or 2.0 gig core 2 cpu, 3 gig ram and Radeon HD4570 gfx.
    Installed 80 gig of music and when starting/browsing windows media center for music, it does OK but I can see its not as quick as I would like it to be.
    Therefore what worries me is trying to work out how one of these lower specked MSI wind top touchscreens will perform.
    Can anyone please share their thoughts or experience especially regarding the browsing and playing of a music mp3 collection of reasonable size eg 80 gig etc.
    Thanks in advance

    It's probably a good idea to check out reviews as that will give a good idea of whether it meets your needs. I don't own a Wind Top so can't comment on what it's like to use.
    MSI Wind Top AE2220 review: http://www.theinquirer.net/inquirer/review/1594404/msi-wind-top-ae2220
    You'll obviously want better performance than your laptop, which would rule out the Wind Top AE2020, since that has an Pentium T4500 Dual-Core processor, which is slower than the Core 2 Duo T6400. The Wind Top AE2220 would be the better choice of the two since it can come with the Core 2 Duo T6600 processor.

  • Simple SAN configuration but need some help

    Hi,
    We have a little San configuration with 6 clients (G5) one MDC (XS G5) and 1 XSR 5.6 TB. XSan 1.2 / MDC and all machine 10.4.3 and 1 in 10.4.4
    Our clients are of two types :
    Two of them have only 1 local user account with admin privileges
    Four of them have 2 local accounts (one with admin privileges, the other normal)
    I just want that all people can access (read & write) the entire volume and folders.
    I don't want to use LDAP for that for some reasons (I want a local user on our FCP editing machines, and already have LDAP for other purposes and don't want to mix the problems).
    Here is my problem : when I copy some files from a client with admin user account, I don't have the write access to theses fils from a client with normal user account....
    but when I'm logged with admin, it works fine.
    How does XSan work for authentification and what I have to do to make my little system work ?
    Thank for your help
    Marcello
    all   Mac OS X (10.4.4)  
    all   Mac OS X (10.4.4)  
    all   Mac OS X (10.4.4)  

    The Xsan Quick-reference Guide from Peachpit Press is a good place to start. As I understand it, each computer should have the same list of users, in the same order. e.g. admin,edit1, edit3 etc. They should be entered in the same order so that their 'uid' is the same on each computer i.e. 501, 502, 503, although I think 'netinfo manager' goto 'users' lets you change the uid number.
    Once this is done, then use 'Tinkertool' application, to change 'permissions' the checked 'don't allow' to unchecked will then allow any user to read/write anything else written to the raid.

  • Array to grid works but need some help. Please help the beginner...

    Hi,
    I'm very green at this...
    I've been trying to display a two-dimmensional array on a dataGrid and finally found some code that I was able to modify to my needs.
    However couple things I don't understand.
    1. Do I need the <s:itemRenderer>...</s:itemRenderer> section to display the data? Can this be simplified?
       I don't need to change the default look of the columns etc. However it looks like the grid will not populate without that prepare() function.
       Why isn't this sufficient to populate the grid? -> dataGrid.dataProvider = new ArrayCollection(dataArray);
    2. The number of columns is hardcoded (3) and their headings are as well (N1, N2, N3).
       Can I show/hide columns at runtime based on number of columns in my array?
       Can I rename the column's headings at runtime?
    Thanks,
    Tom
    here's the code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import spark.components.gridClasses.CellPosition;
                import spark.components.gridClasses.CellRegion;
                // Create a dataProvider whose items are arrays of 6 random numbers. 
                // The DataGrid's item renderer will display item[columnIndex].
                private function initializeDataProvider():void
                    const nRows:int = 10;
                    const nCols:int = 3;
                    const dataArray:Array = new Array(nRows);
                    for (var row:int = 0; row < dataArray.length; row++)
                        var values:Array = new Array(nCols);
                        for (var col:int = 0; col < values.length; col++)
                            values[col] = Math.round(Math.random() * 10);
                        dataArray[row] = values;
                    dataGrid.dataProvider = new ArrayCollection(dataArray);
            ]]>
        </fx:Script>
        <s:DataGrid id="dataGrid" selectionMode="singleRow" initialize="initializeDataProvider()">
            <s:itemRenderer>
                <fx:Component>
                    <s:DefaultGridItemRenderer>
                        <fx:Script>
                            <![CDATA[
                                   override public function prepare(hasBeenRecycled:Boolean):void
                                   label = data[columnIndex];
                            ]]>
                        </fx:Script>
                    </s:DefaultGridItemRenderer>
                </fx:Component>
            </s:itemRenderer>
            <s:columns>
                <s:ArrayList>
                    <s:GridColumn headerText="N1" width="50"/>
                    <s:GridColumn headerText="N2" width="50"/>   
                    <s:GridColumn headerText="N3" width="50"/>   
                </s:ArrayList>
            </s:columns>
        </s:DataGrid>
        <s:Button id="cmd" x="128" y="502" width="122" label="Button" click="initializeDataProvider()"/>
    </s:View>

    Hi fouriron,
    Does this help?
    Formula in E2 (and Fill Down)
    =IF(D2<10,10, D2)
    If a value in column D is less than 10, then insert 10, else insert the value from column D
    The "correct" value (SUM) is in  column D
    The "required" Answer is in column E
    Regards,
    Ian.

  • Considering switching to mac but need some help

    Sorry if this is inappropriate for this forum or section. Wasn't sure where else to post. My pc finally died and am tired of viruses, pc problems etc, so I got the green light for a mac from my wife (thinking of a mini). My question is how do I get all my backed up data on my western digital my book (pc formatted) onto my new mac? Is it possible?
    I was thinking it is since I've read that macs can run windows. Theoretically I would think that if I turned the mac in windows and plugged my My book external drive, it should recognize it, right?

    The Mac should recognize your drive without dealing with installing Windows.
    If your data that is backed up is just in folders, etc, then why even mess with windows? I thought the whole idea was to get away from the PC virus issues and stuff.
    Mac's can *read and write* to PC drives that have been formatted with Fat32 (common with Win98, XP and most external drives) and they can read drives that have been formatted with NTFS (common with XP internal drives). After you get your data off of the drive, you can use Disk Utility to change the partition type to HFS+ and format the drive for Mac's and Time Machine or just use it with Fat32 for transferring files to PC's etc.
    You mount the drive by plugging it in, it shows up on the Mac desktop, drag the files onto your Mac and put them in the proper folders or make new ones.
    If your files are standard computer files like PDF's, Doc's, Jpg's, then they will open with MacIntosh versions of the programs you used on the PC or other programs specific to the Mac. In the PDF example, I don't even install Adobe Acrobat Reader on a Mac (who needs the security issues) and use Apple's Preview program instead.
    For my clients who are switchers, there are usually only two programs in common use on a PC that are a problem for Mac's - The PC version of Quickbooks is better and there is no MS Access Database program for the Mac. There are Mac versions of almost all of the most common PC programs, or excellent replacement programs for the Mac. Programs are easy to deal with, it's the data that you can't replace.
    Deal with Windows if you have to, but many don't and use their files and hardware anyway...
    Hope this helps.

  • I just got BT Infinity but need some help!

    Hello everyone just joined the infinity club! new to BT! *waves" moved from BE* well i have a slight problem the engineer has came and all is installed and working well but I am not getting the quoted speed of 80mb download and 20mb Upload. I phoned BT up and was told it could take up to 24hours but the line came on fine and seems to be stuck with the old profile of 40mb download and 10mb upload (from what i read on the forums that was the old speed) line is very stable and pings are low.  just wanted to double check if i should be worried at all since when it comes to customer support i never have much trust for overseas call centres!

    Zerolimitz wrote:
    Hello everyone just joined the infinity club! new to BT! *waves" moved from BE* well i have a slight problem the engineer has came and all is installed and working well but I am not getting the quoted speed of 80mb download and 20mb Upload. I phoned BT up and was told it could take up to 24hours but the line came on fine and seems to be stuck with the old profile of 40mb download and 10mb upload (from what i read on the forums that was the old speed) line is very stable and pings are low.  just wanted to double check if i should be worried at all since when it comes to customer support i never have much trust for overseas call centres!
    Hey thanks for the quick reply!
    I just got this message when i tried:
    Sorry, our records show there's already an existing order for this phone line. Please check your details and if entered correctly, call us on 0800 121 8085 to speak to an advisor for help. Lines are open Monday to Saturday 7.30am-10pm and Sunday 9am-6pm.

  • Not a genius i need some help

    my husand received a ibook from a customer as a form of payment for some work he did. It works but need some help trying to figure out some things any help will be appreciated. We received it with a admin password so i rebooted it with my new mac os x 10.5.4 to set our own admin password. I can connect to internet with my cable modem no problem however it will not let me open yahoo! it says not a supported browser so i click safari 5 to download and it then tells me that bill of materials is missing any ideas? when i load my mac os x disk it will not load just spins in tray all cds work so dont know why it won't run. It occassionally tells me that classic doesnot have mac os 9 supported?Also any updates i need from this info would also help me out. thank you.
    mac os x version 10.3.9 processor 300 mhz PowerPc G3/powerPc 750 (83.2) memory 192 MB L2 Cache 512 kb bus speed 67 Mhz boot rom version 3.2.4f1
    ata-4 bus: Toshiba 5.59GB revision N2.10c OS9 drivers:Yes
    Safari 1.3.2
    I hope any of this helps. Not really wanting to invest alot of money to do modifications just want to be able to do simple tasks like:itunes check email etc

    HI and welcome to Apple Discussions...
    Try repairing permissions.Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    And since you don't the original install disc, boot in Safe Mode to make sure the startup disk is ok.
    Instructions for starting up in Safe Mode
    What is Safe Mode
    It occassionally tells me that classic doesnot have mac os 9 supported?
    The original owner probably had the Classic environment installed (Mac OS 9).
    For software updates, click the Apple Menu / Software Update...
    Carolyn

  • I need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a hard drive.

    i need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this subject but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a external hard drive.

    If the file was not originally from iTunes, you'll need to redownload it from it's original source or rerip it from the CD.  Files can sometimes go bad and become corrupted.  As to how or why that happens, there are a number of ways.
    What format are the problematic tracks in? Have you tried converting them to another format in iTunes?
    iTunes: How to convert a song to a different file format
    B-rock

  • Need some help in saving video message from viber to my Iphone. I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery"

    Need some help in saving video message from viber to my Iphone 5S with new ios 8's program . I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery" thing but it doesn't save in gallery. I tried all, restarting my phone, rebooting then turning on the save automatically thing and when I watch it again, it still wouldn't save.

    Probably a good question to ask Viber or look at their support site.

  • I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated.

    I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated. Heres an image of before and after. The first image I use is a JPG 72dpi 1500px x1500px and I want to downsize it to 600x600px same res, but it keeps pixelating, this has never happened before. Any suggestions, thoughts?
    thanks!

    I wouldn't say pixelated; more like blurry.
    Like ConnectedCreative said, what steps are you using? Are you using "bicubic sharper" when resizing down?

  • Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it. Update it to IOS 7.1.1

    Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it and still cannot be fixed. I updated it to IOS 7.1.1 recently only, does it have connection with the inconvenience I am experiencing right now? What should I do? Thanks!

    Hi Melomane1024,
    If you are still having issues with your iPhone’s speaker, you may want to look at the steps in this article -
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute then turn on wifi on iMac before it can reconnect. Need some help please.

    Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute, then turn on wifi on iMac before it can reconnect. Need some help please.
    Already gone through troubleshooting guide a zillion times. Thanks.

    This worked for me... A little time consuming but once you get rolling it goes GREAT... Thanks....
    I got my artwork and saved it to my Desktop
    Opened up Microsoft Paint and clicked on "File" and "Open" and found it to get it on the screen to resize it
    Clicked "resize" and a box for changing it opened up
    Checked the box "Pixels" and "Unchecked maintain aspect ratio"
    Set Horizontal for 640 and Vertical for 480
    Clicked on "OK" and went back to "File" and did a "Save As" and chose JPEG Picture
    It came up "File Already Existed" and clicked "OK" (really did not care about the original artwork I found because wrong size)
    Went to iTunes and on the movie right clicked on "Get Info", clicked on "Details", then "Artwork"
    Go to the little box on the top left that shows your old artwork and click on it to get the little blue border to appear around it and hit "Delete" to make it gone
    Click on "Add Artwork" and find it where you put the one from above on your Desktop and hit "Open" and OK and your new artwork is now there and all good.
    Sounds like a lot of steps to follow but after around 5 or so you will fly through it. This worked perfect on my iPhone 6 Plus and I have artwork on my Home Videos now.

  • Need some help: my itunes won't sync with my iphone anymore. Both softwares are up to date and I've reinstalled itunes. After I reinstall, it syncs. But then when I reboot my computer, it no longer syncs anymore and I have to keep reinstalling itunes. Tho

    Need some help: my itunes won't sync with my iphone anymore. Both softwares are up to date and I've reinstalled itunes. After I reinstall, it syncs. But then when I reboot my computer, it no longer syncs anymore and I have to keep reinstalling itunes. Thoughts???

    thought that it was possible to have the same iTunes library on any machine that was authorised, a kind of cloud-iTunes I guess. 
    That would convenient, but sadly it is not the case. Sorry!
    Either way your welcome and best of luck!
    B-rock

  • Ok i have indesign CS6 and all files are stored on a 10.7.5 MAC server.  This just started happening.  When I open a file indesigns is creating a textfile in the same folder?  I need some help on this.

    Ok i have indesign CS6 and all files are stored on a 10.7.5 MAC server.  This just started happening.  When I open a file indesigns is creating a textfile in the same folder?  I need some help on this.

    Ask in the ID forum and be much more specific about your configuration. there could be any number of reasons why manifests, temp files or restore files are created.
    Mylenium

  • Have been trying to get a simple rollover tooltip going but haven't had any success...need some help

    Have been trying to get a simple rollover tooltip going but haven't had any success...need some help please

    start watching at 11min
    http://www.youtube.com/watch?v=6_FJYN36_94
    hope this helps

Maybe you are looking for

  • After recent update to my macbook pro itunes will not open, it just bounces when I click on it

    fter recent update to my macbook pro itunes will not open, it just bounces when I click on it

  • I can no longer delete lines on the get info screen

    I'm trying to delete the artist on the get info screen. Until a few days ago, I was able to do so.  Now, when I delete the artist, the get info screen appears as if the line has been deleted. However, when I click "OK" then close the screen, it hasn'

  • [SOLVED] No sound, dummy output

    I have no sound on my arch linux installation, and I believe it may be related to updating my kernel. Two weeks ago I had sound working perfectly, however just yesterday I noticed that my output device is listed as "Dummy Output" I use the following

  • Read Custom format of Excel

    I want to read custom date format from excel through JAVA: Issue: In my excel cell is of custom format MMYYYY. Which is 011900. When i click on it It shows me 1/0/1900. I am using jxl.jar for reading excel. When i am reading it through java it is not

  • Adobe Premiere PRO CS4... Installation wird vorbereitet

    Hallo! Ich habe mir vorgestern die Testversion des o.g. Programmes runter geladen... Allerdings kommt mein bester Rechner, nicht weiter als bis zum "Installation wird vorbereitet" Fenster. Dann bleibt er dort undes passiert nichts mehr. Das Programm