Copy Files Between Two Unix Computers

Hi,
I am trying to write a piece of code that will copy bunch of files from one Unix computer on to another Unix computer. On windows it seems to be pretty straight but on Unix I am trying to understand best way of copying the files. I don't have much expertise in Unix.
Is using FTP the only option for Unix?
I am not able to create a FILE object by referring to a file on some other Unix box? I tried new File("//unixbox2/temp/123.txt");
Please let me know the different ways to copy files between Unix computers.
Thanks
Gautham

This's a simple example of how you can send a file form one computer to another
import java.io.*;
import java.net.*;
public class Prf extends Thread {
     public void run() { //Read form file and writer to socket
          try {
               Thread.sleep(100);//sleep(100) while server is getting ready to accept connection
               System.out.println("Connecting...");
               Socket soc = new Socket("localhost",4070);
               OutputStream outS = soc.getOutputStream();
               FileInputStream fis = new FileInputStream("input.dat");
               int i = 0;
               byte[] b = new byte[1000000]; //1MB buffer
               for(;;) {
                    i = fis.read(b); //read from file (i - number of read bytes)
                    if (i != -1) {// checking for end of data
                         outS.write(b,0,i); //write portion (0..i) of bytes to socket
                    } else {
                         break;
               fis.close();
               outS.close();
               soc.close();
          } catch (IOException e) {
               System.out.println(e.getMessage());
          } catch (InterruptedException e) {
               System.out.println(e.getMessage());
     public static void main(String[] args) {//Read from socket and write to file
          Prf prf = new Prf();
          try {
               ServerSocket sSoc = new ServerSocket(4070);
               prf.start(); //start writer
               Socket soc = sSoc.accept();
               System.out.println("Connection's accepted");
               InputStream inS = soc.getInputStream();
               FileOutputStream fos = new FileOutputStream("output.dat");
               int i = 0;
               byte [] b = new byte[1000000]; //buffer
               while (true) {
                    i = inS.read(b);//read from socket (i - number of read bytes)
                    if (i != -1) { //check for end of date
                         fos.write(b,0,i); //write portion (0..i) of bytes to file
                    } else {
                         break;
               fos.close();
               inS.close();
               soc.close();
               sSoc.close();
          } catch (IOException e) {
               System.out.println(e.getMessage());
}

Similar Messages

  • Permissions problem copying files between two Macs

    I've run into a strange problem when trying to copy files between two networked Macs. Some background facts: We have two Macs at home each with three accounts. Two of the accounts are regular user accounts (my wife's and mine, call them "K" and "B" for short) and the third is an administrator account (we'll call it "A"). I have a .Mac account, which I use to sync between the two Macs. The other accounts do not. The user accounts B & K were initially set up on the second Mac via the Migration Assistant, copying over files and settings. The administrator account was not.
    The problem I've run into is that if I am logged in as either user B or K on the local Mac, connect to the remote Mac as the corresponding user, and try to copy files into a folder owned by that same user on the remote Mac, I get a series of three dialog boxes with error messages:
    1) "You may need to enter the name and password for an administrator on this computer to change the item named ..." (stop/continue)
    2) "The item ... contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?" (stop/continue)
    3) "The operation cannot be completed because you do not have sufficient privileges for some of the items."
    If I go all the way through this hitting continue / OK on each, what shows up on the remote computer at the end is an empty file with the name and filetype of the local file that I was trying to copy, but of zero length.
    This only happens when I'm copying from (local.B -> remote.B) or (local.K -> remote.K). It does not happen if I try any of the other pairwise combinations (assuming that I've authenticated properly): (local.B -> remote.K or remote.A), (local.K -> remote.B or remote.A), (local.A -> remote.B, remote.K or remote.A). It happens regardless of which Mac is local and which is remote.
    I'm a little baffled. I've tried to search for this on Apple Discussions and other forums, but either haven't been using the right keywords or am coming up blank.
    Anyone have any suggestions?
    Thanks,
    Bob

    borbye is correct that this will remedy the problem but there is a way to do it and have your account work. after changing the user UID and group UID to 501 you will have to restart. then when you log on your home folder will still be your default but you will not have any access. Since you are still an admin you can change that. right click on the home folder and select get info click arrow for sharing and permissions. Your old UID account will show up as _unknown delete this user and add your user to it giving yourself read and write privilege. click on the cog on the bottom and select apply to enclosed items. A warning box will appear stating that this process cannot be undone do you wish to proceed? click yes and a status bar will come up. once the bar is gone the process is complete. since you didn't have access to your home folder you cannot save your settings, this is a good thing since your account will not look remotely the same as yours most likely. all you have to do now is logout and then back in. Your account will look as it did before the change with all the access settings and so forth as before the change... minus some permissions due to the overwrite. It's a minor repair to the permissions to some shares considering you will be able to now move files to and these shares without the permissions alert that only creates a 4kb file instead of the real thing. Takes 5 minutes at most. Have fun.

  • 'Finder wants to make changes' when copying files between two Macs

    Hey all,
    I've read a few versions of this problem on the forums here but haven't tracked down a solution.
    I have two Macs on the same network – I recently got a second-hand Mac Pro, and my Macbook Air. The computers are both on the network and can browse their respective folders and the like, but when I go to copy or sync files between the computers, I get a file permission issue.
    Finder on either computer prompts: 'Finder wants to make changes. Enter your password'. At the same time a corrupted version of the file copies to the other computer but with 0 bytes that doesn't open...
    Has anyone solved this issue before – it'd be greatly appreciated to hear any approaches!

    On the laptop I got 513
    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Problem copying files between two external drives...

    Hello, and thanks for any ideas on this one.
    I have a punch of .m4v video files on a 1TB Lacie external drive, but re cently bought two 3TB Seagate drives and wanted to move all these media files over to one of the new drives.  Most of the .m4v files moved just fine, but I encountered two different issues in the process that I can't resolve.
    I'm on an Intel-based iMac (Core 2 Duo), running OSX 10.5.8.
    1. Most pressing problem:
    One of the video files, when I try to copy, causes the finder windows to completely freeze requiring a hard reboot of the machine to fix.  I can get infomation on the file OK, and can play it off the original drive just fine, but try and copy it and all manners of computer death take place.  There does not seem to be a permissions issue, and the file isn't flagged as locked.
    This command produces no fruit either: $ lsof | grep videofile.m4v
    2. Second issue:
    This one affects two other files.  When trying to move them over, they get approx half way there and then I get a notice that the operation cannot be completed because the files are supposedly in use.
    All the googling I can do on that error seems to bring up cases where files can't even start to be moved... but in these two files, they get half there.  Or maybe they're read OK but then can't write?  Either way the status bars show about 1 GIG or 1.7 copied.  I don't know.
    I also checked the permissions, the locked setting, used the lsof command, etc... no luck.
    About 100 other videos copied over just fine.
    Any ideas are greatly appreciated.

    Thanks for the response... I tried just now, no luck.
    I did at least get an error this time for problem one above before the lock up... lol... error code 36.  So far searching for that isn't coming up with any solutions either. 

  • Insufficient Privilege to copy files between two Macs as Admin

    File Sharing in Leopard is worthless... it reminds me of how much fun it is to get file sharing to work on Windows.
    I have two Macbooks... I'm administrator of BOTH. I set up the userids. I set up the passwords.
    When I TRY to link to the shared disk on the other computer, it automatically links without giving me a chance to type my administrator userid/pw. (Although it links as the owner with the correct pw... and even as the owner I can't copy a file from my laptop to the desktop of the other one!)
    If I click the "disconnect" button multiple times, sometimes it will present a CONNECT AS... dialog and i can enter my userid/pw (I'm designated as Administrator on both laptops). Sometimes the Finder crashes (netauthagent or something)... I have to force restart the Finder.
    If it doesn't crash, I still do NOT have authority to actually copy a file.
    I've tried both as AFP and SMB...
    What is going on with networking? was this ever tested before it was released.
    Things like this (not to mention HELP windows that obscure the screen and can't be hidden and 100s of other equally annoying things) is a bad joke and more annoying than it should EVER be!

    Hi keith daniel1-
    This may help: Sharing
    Luck-
    -DaddyPaycheck

  • [SOLVED] low speed & high CPU usage copying files between two HDD

    Both HDD are connected by SATA to the MB. One is in NTFS format (shared with windows 7) and the other one has different partitions. 
    I'm trying to copy one file (230 MB) from an ext4 partition to the NTFS HDD. The speed is about 40 kB/s and on the system monitor, I can see how one of the cores is about 100 % of usage!
    I have done these operations lot of times and never happened something like that.
    What should I have to look?
    Last edited by doblerone (2013-06-03 17:01:59)

    doblerone wrote:
    Perfect Gentleman wrote:did you install ntfs-3g ?
    Yes, it was installed.
    jrussell wrote:How have you mounted the drives? What command did you use to mount them?
    They are mounted both automatically at startup. This is my fstab:
    GNU nano 2.2.6 Fichero: /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # UUID=904c8353-bb08-4e15-af53-0db8e8487b2e
    /dev/sda5 / ext4 rw,relatime,data=ordered 0 1
    # UUID=b361c968-872d-4e0b-a541-e8a046d8baf5
    /dev/sda3 /boot ext2 rw,relatime 0 2
    # UUID=da4616d1-960c-4027-a895-362c448f68f0
    /dev/sda6 /home ext4 rw,relatime,data=ordered 0 2
    # UUID=3f1764b5-242f-48d8-a8fb-5eb4223e8cda
    /dev/sda7 none swap defaults 0 0
    # UUID=EE4A513F4A5105AD
    /dev/sdb1 /media/Almacenamiento ntfs auto,user,sync,exec,dev,rw 0 0
    Why are you mounting a flash drive on your fstab? (unless its always in your PC when you boot....or you never want to remove it?)
    unmount the usb (/dev/sdb1)
    Then I think try hash out that line for the usb (/dev/sdb1) and install ntfs-3g and mount with
    mount.ntfs-3g /dev/sdb1 /mnt

  • Transferring file between two mac os 10.7.5 computers

    what do i need to trsansfer files between two mac os 10.7 computers on the sqame network and I want to do this over the wireless network?

    Hope this helps.
    If both computers are using OS X Lion or OS X Mountain Lion, use AirDrop to send files wirelessly to those near you.
    http://support.apple.com/kb/PH11466

  • How to transfer file between two computers?

    Hi,
    I am student, and recently got an assigment to write a java program to transfer file between two computer. I tried to use sockets, but fails. Any suggestion?
    Thanks
    hol

    I am student, and recently got an assigment to write a java program to transfer file between two computer. I tried to use sockets, but fails. Any suggestion?
    Any suggestion?
    My My My te hehe,I know you can put it on a floopy disk or a cd and then take that cd or floopy to the other computer to transfer the files.

  • Back To My Mac: why can't I copy files between Macs?

    I use Back To My Mac to connect between a Mac Book Pro and Mac Pro. These two machines have the same home directory name, but different passwords. My home network is on an Apple Airport Extreme.
    A recent, persistent bug is causing havoc when I try to copy files between computers. Here is what happens:
    1. I connect to the Mac Pro remotely from the MBP, using my Apple ID credentials.
    2. Using a finder window on my Mac Book Pro, I try to copy a file TO the Mac Pro desktop that I'm certain doesn't already exist there. A "Preparing to copy" window appears.
    3. After a few moments, a window appears: "Finder wants to make changes. Type your password to allow this." Again, I've already entered my Apple ID to connect to the Mac Pro. This window requires my Mac Book Pro sign-in in order to continue.
    4. The next message is 'A newer item named “FileName.pdf” already exists in this location. Do you want to replace it with the older one you’re moving?'
    Here are the results of my options from this dialog:
    >>If I choose 'Keep Both Files':
    -- A progress window appears (saying something like "copying 0 of 108 kb", but without any progress bar movement). I click the X button to stop the transfer, the progress window changes to "stopping" status, but remains on the screen for several minutes. My Mac Pro is unresponsive/unreachable via BTMM during this time.
    -- After several minutes, the file transfer progress window disappears and my Mac Pro becomes available again via BTMM. There are now several THOUSAND numbered copies of the original. Each is 0 kb in size.
    >>If I choose 'Replace':
    -- A progress window appears, quickly followed by this message: 'The operation can’t be completed because an item with the name “” already exists.' The message appears exactly as written, without the filename between the quotes.
    -- A file with the same name as the one I tried to copy over is now on the Mac Pro desktop, but it is 0 kb in size.
    I'm lost -- not sure if this is a permissions issue, a problem w/ BTMM, or something else. Any input, advice, questions, etc. are very welcome.
    Thanks

    I'm having the exact same issue, did you find a solution. It's annoying!

  • How do I share files between two Macs on my wireless network?

    I have an iMac G4 and an ibook G3 on a wireless network. I have "file sharing" activated on both computers. (Also Appletalk, which may or may not be a misguided move, but I got the idea from OSX "Help.")
    When I try to get from either computer onto the other, my computer is recognized by name (another alternative is to log on as a "guest"). I'm prompted for a password. None of the passwords I use works. I've tried the administrative passwords for both computers.
    How do I get beyond this hurdle to share files? I've posted elsewhere to no avail. This must be an easy one. How do you share files between two macs on one network?

    Do your accounts on the machines have the same short name? It's an issue I've seen a few names.. one machine with bsmith, the other with bobsmith, but the long names for both being "Bob Smith". The login windows would confuse users because it showed their names, but because the short names didn't match, it wouldn't work.
    The password you should use is the administrative one, so I don't know why you're not having luck.

  • Different ways to copy data between two schemas in one instance

    Hi there,
    I am searching a good way to copy data between two schemas in the same instance.
    Both schemas have an identical structure such as triggers, tables, views and so on. The only difference is the purpose: one is the productivity system and one is for development.
    I looked at datapump but I do not explicit want to export / import. I want to keep the data in the productivity schema as well as copy it to the other schema. Any ideas? I found out there is a copy statement but I dont't know how that works.
    Thank you so far,
    Jörn

    Thank you for your replies!
    I also thought of creating a second instance for development and move the dev - schema to it. I just don't know whether our server can handle both (performance?). Anyway the idea is to have a possibility to quickly rebuild the data inside a schema without indixes or triggers, just pure data. I thought the easiest way would be to copy the data between the schemas as they are exactly the same. However if you tell me DataPunp is the best solution i won't deny using it :).
    When you export data a file is created. does that also mean that the exported data is deleted inside the schema?
    best regards
    Jörn
    Ps: Guido, you are following me, aren' t you? ;-)

  • Problem using scp to copy files between Macs

    I've been trying to copy a folder hierarchy containing a slew of icon files between two of my Macs. Using scp has proven to be futile.
    The command line I'm using is
    scp -r -p -C -E [email protected]:/Icons /Icons
    After a number of files are copied I receive the following error message on a file and all thereafter:
    ./icons/Agrapha-Christmas/Boxes: Too many open files
    More specifically the "too many open files" message.
    I am using Tiger 10.4.7
    What am I doing wrong here?

    One more piece of information. I ran scp with the verbose switch and have attached a portion of the feedback showing successfull copies followed by the error which occurs on all subsequent files:
    Entering directory: D0777 0 Adobe CS Icons
    Sending file modes: C0644 6148 .DS_Store
    .DS_Store 100% 6148 6.0KB/s 00:00
    copyfile(/icons/Adobe CS Icons/..DSStore, /tmp/scp.md.DJyatJ, PACK)
    Sending file modes: C0400 82 ..DSStore
    ..DSStore 100% 82 0.1KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/..DSStore.N8P, /icons/icons/Adobe CS Icons/.DS_Store, UNPACK)
    Sending file modes: C0777 68489 Adobe CS Box.icns
    Adobe CS Box.icns 100% 67KB 66.9KB/s 00:01
    copyfile(/icons/Adobe CS Icons/._Adobe CS Box.icns, /tmp/scp.md.00r28e, PACK)
    Sending file modes: C0400 70745 ._Adobe CS Box.icns
    ._Adobe CS Box.icns 100% 69KB 69.1KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/._Adobe CS Box.icns.K7Q, /icons/icons/Adobe CS Icons/Adobe CS Box.icns, UNPACK)
    Sending file modes: C0777 56691 Adobe CS Folder 2.icns
    Adobe CS Folder 2.icns 100% 55KB 55.4KB/s 00:00
    copyfile(/icons/Adobe CS Icons/._Adobe CS Folder 2.icns, /tmp/scp.md.EgDDb2, PACK)
    Sending file modes: C0400 58947 ._Adobe CS Folder 2.icns
    ._Adobe CS Folder 2.icns 100% 58KB 57.6KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/._Adobe CS Folder 2.icns.hrC, /icons/icons/Adobe CS Icons/Adobe CS Folder 2.icns, UNPACK)
    Sending file modes: C0777 57330 Adobe CS Folder 3.icns
    Adobe CS Folder 3.icns 100% 56KB 56.0KB/s 00:01
    copyfile(/icons/Adobe CS Icons/._Adobe CS Folder 3.icns, /tmp/scp.md.rDiEBy, PACK)
    Sending file modes: C0400 59586 ._Adobe CS Folder 3.icns
    ._Adobe CS Folder 3.icns 100% 58KB 58.2KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/._Adobe CS Folder 3.icns.5nC, /icons/icons/Adobe CS Icons/Adobe CS Folder 3.icns, UNPACK)
    Sending file modes: C0777 56289 Adobe CS Folder.icns
    Adobe CS Folder.icns 100% 55KB 55.0KB/s 00:00
    copyfile(/icons/Adobe CS Icons/._Adobe CS Folder.icns, /tmp/scp.md.CVrek6, PACK)
    Sending file modes: C0400 58545 ._Adobe CS Folder.icns
    ._Adobe CS Folder.icns 100% 57KB 57.2KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/._Adobe CS Folder.icns.JMp, /icons/icons/Adobe CS Icons/Adobe CS Folder.icns, UNPACK)
    Sending file modes: C0777 54831 Adobe CS Logo.icns
    Adobe CS Logo.icns 100% 54KB 53.6KB/s 00:00
    copyfile(/icons/Adobe CS Icons/._Adobe CS Logo.icns, /tmp/scp.md.keUSYq, PACK)
    Sending file modes: C0400 57087 ._Adobe CS Logo.icns
    ._Adobe CS Logo.icns 100% 56KB 55.8KB/s 00:00
    copyfile(/icons/icons/Adobe CS Icons/._Adobe CS Logo.icns.M39, /icons/icons/Adobe CS Icons/Adobe CS Logo.icns, UNPACK)
    Entering directory: D0777 0 Agrapha-Christmas
    Sending file modes: C0644 12292 .DS_Store
    .DS_Store 100% 12KB 12.0KB/s 00:00
    copyfile(/icons/Agrapha-Christmas/..DSStore, /tmp/scp.md.1s6tDJ, PACK)
    Sending file modes: C0400 82 ..DSStore
    ..DSStore 100% 82 0.1KB/s 00:00
    copyfile(/icons/icons/Agrapha-Christmas/..DSStore.Jmw, /icons/icons/Agrapha-Christmas/.DS_Store, UNPACK)
    Sending file modes: C0777 0 Angel
    Angel 100% 0 0.0KB/s 00:00
    copyfile(/icons/Agrapha-Christmas/._Angel, /tmp/scp.md.hueGHQ, PACK)
    Sending file modes: C0400 44820 ._Angel
    ._Angel 100% 44KB 43.8KB/s 00:00
    copyfile(/icons/icons/Agrapha-Christmas/._Angel.ZDF, /icons/icons/Agrapha-Christmas/Angel, UNPACK)
    Sending file modes: C0777 0 Basket
    Basket 100% 0 0.0KB/s 00:00
    copyfile(/icons/Agrapha-Christmas/._Basket, /tmp/scp.md.8NWfFT, PACK)
    Sending file modes: C0400 49608 ._Basket
    ._Basket 100% 48KB 48.5KB/s 00:00
    copyfile(/icons/icons/Agrapha-Christmas/._Basket.eIY, /icons/icons/Agrapha-Christmas/Basket, UNPACK)
    Sending file modes: C0777 0 Boxes
    Boxes 100% 0 0.0KB/s 00:00
    copyfile(/icons/Agrapha-Christmas/._Boxes, /tmp/scp.md.oWFB8k, PACK)
    Sending file modes: C0400 46314 ._Boxes
    ._Boxes 100% 45KB 45.2KB/s 00:00
    copyfile(/icons/icons/Agrapha-Christmas/._Boxes.GGu, /icons/icons/Agrapha-Christmas/Boxes, UNPACK)
    Sending file modes: C0777 0 Broach
    /icons/icons/Agrapha-Christmas/Broach: Too many open files
    Sending file modes: C0777 0 Candy Cane
    /icons/icons/Agrapha-Christmas/Candy Cane: Too many open files
    Starting with the Broach file, all subsequent files display the error "too many open files".

  • How to transfer files between two Macs via Firewire cable?

    I heard you can transfer selected files between two Macs running Tiger. I'm not talking about setting up a new Mac w. files from an older one, if that's different? Can someone enlighten me on this or point me to a "how-to" link? Thanks.

    Yes, you pretty much just drag and drop or copy and paste depending on which way you like better. It is pretty much like connecting an external hard drive. Just find the files you want and copy them over to your other computer.
    This is one of my favorite features from Macs. It's very simple to do and because it's Firewire even large files transfer over very quickly.

  • Can you transfer files between two user accounts on the same macbook pro?

    Can you transfer files between two user accounts on the same MacBook Pro?
    Specifically, I used the Migration Assistant to move music and photos from my old PC to my new MacBook. 
    Somehow, I missed the fact that it was creating a new user account when it was doing this.  So none of music and photos are in the user account I originally set-up.  Instead, all these files are now in a different account.
    I'd like to consolidate all my files on the one user account and delete the other one.
    Is this possible and, if so, how do I do it?
    Thank you.

    you can crop files from one account to another using the Public Dropbox which every user account has.  Log into the user that has the files you want to move, then drag the folder you want to the new users' dropbox:
    I suggest a small scale test on a few files first before moving gigabytes of files.

  • How to drag and drop files between two JFileChooser

    Sir i want to drag and drop files between two JFileChooser i don't know how to do that. So is there any reference code for that so that i can able to do it. I have enabled setDragEnabled(true) for both the jfilechooser now i don't now how to drop files in them means drag file from one jfilechooser and drop it to another JFileChooser,.
    Plz help me this is the requirement in my project.

    Note: This thread was originally posted in the [New To Java|http://forums.sun.com/forum.jspa?forumID=54] forum, but moved to this forum for closer topic alignment.

Maybe you are looking for

  • The "Delete" check box is not working in a table

    I have created a Master-Multi Detailed groups page, I can "Add Row" to the Master table, which is saved to the DB okay, but I cannot Add rows to the DB in the detailed table, and I cannot Delete the records (by checking the delete check boxes and hit

  • [Bounty] Free Macbook Pro to get Arch Linux running on Amazon's EC2

    First, the details: I will purchase a lowest–end Macbook Pro 13″ ($US 1,200 on Apple's store, new) for the first person to deliver to me a working set of step–by–step instructions for installing the latest Arch Linux on top of Amazon's EC2 platform.

  • 2nd ssd can't unmount or write after update

    I have a Mid 2010 Macbook Pro i7. Intel chipset is series 5 it says. I bought a new intel ssd that I put into the main drive bay, and then I put the Apple/Intel SSD drive that I had in previously into the Optical bay. The drive is fully readable but

  • How do you make a PDF file fillable?

    How do you make a pdf fillable?

  • Stolen macbook (and wiped clean and internet)

    Hello, Sorry If this question has beens asked 100 times. But I had recently had my macbook pro stolen. I had find my mac installed and enabled. I understand that for Find My Mac to work the mac needs to be connected to the internet. I know you can wi