Is it possible (if so: how) to store an i-Photo file (with an average of 50 photos per file) onto a USB-stick, in a way that the file with the heading (e.i.'holidays' or 'work') remains in tact? If I click 'export' all photos are stored separately. Thanks

I am trying to store I-Photo files onto a USB-stick, keeping the file (with an average of 50 photos) in tact. Is this possible and if so: how, please? I have tried clicking on 'export' and then click on the name of the USB-stick. But by doing this all photos seem to be stored separately, under their image number - and not under the file name. Which makes it near impossible to easily refind the photos on the USB-stick.
Thanks for advice

Dear Alex,
If I understand correct your post you are confused with difference of loading procedure between real smartcard and SDK simulation. It is a fact that simulation uses its own loader application and smartcards usually use GlobalPlatform card manager application. To load CAP file to the GP compliant card it is necessary to use sequence of commands such as INSTALL(load),LOAD,INSTALL(install+make_selectable). I do not know any specific java API to perform this loading with any reader. But there are few software programs from various card producers. This software is usually distributes toghether with smartcards.
Yours
Dmitri

Similar Messages

  • How can I see what photos are stored on iCloud?

    How can I see what photos are stored on iCloud? I haven't used Photo Stream before so there are no photos on there that I can see.
    Help needed ASAP.
    Thanks

    If you haven't used Photostream there won't be any photos "actually on iCloud".
    Any photos stored as part of an iOS device backup can be viewed on the iOS device after restoring the backup to the iOS device. They can't be viewed online.

  • How do i see what photos are stored in my icloud.  I cannot do this without installing 8.0 or above which i cannot do as i do not have enough space on my iphone.  I do not want to delete the pics to make enough room to install 8.0 without checking

    how do i see what photos are stored in my icloud.  I cannot do this without installing 8.0 or above which i cannot do as i do not have enough space on my iphone.  I do not want to delete the pics to make enough room to install 8.0 without checking first that the pics are saved.  Thanks

    Good day AMELIASARAH,
    One resolution to your issue would be to update your iPhone using iTunes on your computer rather than over the air. This requires much less space on the iPhone as most of the work is done by the computer. See this article for how to do it -
    If you need more space for an iOS update - Apple Support
    Thanks for using Apple Support Communities.
    Safe computing,
    Brett L 

  • How can I update my original iPad. It says I'm still under version 4.2.1 is there a way that the original iPad can be updated to iOS6??? I can't download hardly any newer apps it's horrible!!!!!! Please help someone!

    Original iPad

    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • HT4528 My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished the RESTORE would fail c

    My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished but the RESTORE would fail I had an error, could not access Apple server ( some server name I cant remember).
    I have plenty of space available on the iphone,
    8gb free,
    ios version- 6.1.3 ( 10B329)
    carrier - Verizon 14.0
    Modem Firmware - 3.0.04
    Can someone help.
    I tried doing my backup restore on the same computer as I once did a year ago. and THis time I cant do the restore on the iphone.
    computer osx is 10.5.8
    itunes version 10.
    I do not wish to go to ios 7 at this time.

    Settings > General > Reset > Reset Network Settings.
    Basic troubleshooting is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue continues, contact the carrier to troubleshoot the network connectivity issues.

  • How To Store pdf or doc file in Oracle Database using Java Jdbc?

    can any one help me out How To Store pdf or doc file in Oracle Database using Java Jdbc in JSP/Serlet? i tried like anything. using blob also i tried. but i am able 2 store images in DB not files. please if u know or else if u have some code like this plz send that to me, and help me out plz. i need that urgent.

    Hi.. i am not getting error, But i am not getting the original contents from my file. i am getting all ASCII vales, instead of my original data. here i am including my code.
    for Adding PDF in DB i used image.jsp
    Database table structure (table name. pictures )
    Name Null? Type
    ID NOT NULL NUMBER(11)
    IMAGE BLOB
    <%@ page language="java" import="java.util.*,java.sql.*,java.io.*" pageEncoding="ISO-8859-1"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%
    try{
         Class.forName("oracle.jdbc.driver.OracleDriver");
         Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
         PreparedStatement ps,pstmt,psmnt;
         ps = con.prepareStatement("INSERT INTO pictures VALUES(?,?)");
    File file =
    new File("D:/info.pdf");
    FileInputStream fs = new FileInputStream(file);
    ps.setInt(1,4);
    ps.setBinaryStream(2,fs,fs.available());
    int i = ps.executeUpdate();
    if(i!=0){
    out.println("<h2>PDF inserted successfully");
    else{
    out.println("<h2>Problem in image insertion");
    catch(Exception e){
    out.println("<h2>Failed Due To "+e);
    %>
    O/P: PDF inserted successfully
    i tried to display that pdf using servlet. i am giving the code below.
    import java.io.IOException;
    import java.sql.*;
    import java.io.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class DispPDF extends HttpServlet {
         * The doGet method of the servlet. <br>
         * This method is called when a form has its tag value method equals to get.
         * @param request the request send by the client to the server
         * @param response the response send by the server to the client
         * @throws ServletException if an error occurred
         * @throws IOException if an error occurred
         public void service(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              //response.setContentType("text/html"); i commented. coz we cant use response two times.
              //PrintWriter out = response.getWriter();
              try{
                   InputStream sPdf;
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                        Connection con=DriverManager.getConnection("jdbc:oracle:thin:@192.168.1.135:1521:orcl","scott","tiger");
                        PreparedStatement ps,pstmt,psmnt;
                   psmnt = con.prepareStatement("SELECT image FROM pictures WHERE id = ?");
                        psmnt.setString(1, "4"); // here integer number '4' is image id from the table.
                   ResultSet rs = psmnt.executeQuery();
                        if(rs.next()) {
                   byte[] bytearray = new byte[1048576];
                        //out.println(bytearray);
                        int size=0;
                        sPdf = rs.getBinaryStream(1);
                        response.reset();
                        response.setContentType("application/pdf");
                        while((size=sPdf.read(bytearray))!= -1 ){
                        //out.println(size);
                        response.getOutputStream().write(bytearray,0,size);
                   catch(Exception e){
                   System.out.println("Failed Due To "+e);
                        //out.println("<h2>Failed Due To "+e);
              //out.close();
    OP
    PDF-1.4 %âãÏÓ 2 0 obj <>stream xœ+är á26S°00SIá2PÐ5´1ôÝ BÒ¸4Ü2‹ŠKüsSŠSŠS4C²€ê P”kø$V㙂GÒU×713CkW )(Ü endstream endobj 4 0 obj <>>>/MediaBox[0 0 595 842]>> endobj 1 0 obj <> endobj 3 0 obj <> endobj 5 0 obj <> endobj 6 0 obj <> endobj xref 0 7 0000000000 65535 f 0000000325 00000 n 0000000015 00000 n 0000000413 00000 n 0000000168 00000 n 0000000464 00000 n 0000000509 00000 n trailer <<01b2fa8b70ac262bfa939cc786f8770c>]/Root 5 0 R/Size 7/Info 6 0 R>> startxref 641 %%EOF
    plz help me out.

  • How to store xml data into file in xml format through java program?

    HI Friends,
    Please let me know
    How to store xml data into file in xml format through java program?
    thanks......
    can discuss further at messenger.....
    Avanish Kumar Singh
    Software Engineer,
    Samsung India Development Center,
    Bangalore--560001.
    [email protected]

    Hi i need to write the data from an XML file to a Microsoft SQL SErver database!
    i got a piece of code from the net which allows me to parse th file:
    import java.io.IOException;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    import org.apache.xerces.parsers.SAXParser;
    import java.lang.*;
    public class MySaxParser extends DefaultHandler
    private static int INDENT = 4;
    private static String attList = "";
    public static void main(String[] argv)
    if (argv.length != 1)
    System.out.println("Usage: java MySaxParser [URI]");
    System.exit(0);
    String uri = argv[0];
    try
    XMLReader parser = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
    MySaxParser MySaxParserInstance = new MySaxParser();
    parser.setContentHandler(MySaxParserInstance);
    parser.parse(uri);
    catch(IOException ioe)
    ioe.printStackTrace();
    catch(SAXException saxe)
    saxe.printStackTrace();
    private int idx = 0;
    public void characters(char[] ch, int start, int length)
    throws SAXException
    String s = new String(ch, start, length);
    if (ch[0] == '\n')
    return;
    System.out.println(getIndent() + " Value: " + s);
    public void endDocument() throws SAXException
    idx -= INDENT;
    public void endElement(String uri, String localName, String qName) throws SAXException
    if (!attList.equals(""))
    System.out.println(getIndent() + " Attributes: " + attList);
    attList = "";
    System.out.println(getIndent() + "end document");
    idx -= INDENT;
    public void startDocument() throws SAXException
    idx += INDENT;
    public void startElement(String uri,
    String localName,
    String qName,
    Attributes attributes) throws SAXException
    idx += INDENT;
    System.out.println('\n' + getIndent() + "start element: " + localName);
    if (localName.compareTo("Machine") == 0)
    System.out.println("YES");
    if (attributes.getLength() > 0)
    idx += INDENT;
    for (int i = 0; i < attributes.getLength(); i++)
    attList = attList + attributes.getLocalName(i) + " = " + attributes.getValue(i);
    if (i < (attributes.getLength() - 1))
    attList = attList + ", ";
    idx-= INDENT;
    private String getIndent()
    StringBuffer sb = new StringBuffer();
    for (int i = 0; i < idx; i++)
    sb.append(" ");
    return sb.toString();
    }// END PRGM
    Now , am not a very good Java DEv. and i need to find a soln. to this prob within 1 week.
    The next step is to write the data to the DB.
    Am sending an example of my file:
    <Start>
    <Machine>
    <Hostname> IPCServer </Hostname>
    <HostID> 80c04499 </HostID>
    <MachineType> sun4u [ID 466748 kern.info] Sun Ultra 5/10 UPA/PCI (UltraSPARC-IIi 360MHz) </MachineType>
    <CPU> UltraSPARC-IIi at 360 MHz </CPU>
    <Memory> RAM : 512 MB </Memory>
    <HostAdapter>
    <HA> kern.info] </HA>
    </HostAdapter>
    <Harddisks>
    <HD>
    <HD1> c0t0d0 ctrl kern.info] target 0 lun 0 </HD1>
    <HD2> ST38420A 8.2 GB </HD2>
    </HD>
    </Harddisks>
    <GraphicCard> m64B : PCI PGX 8-bit +Accel. </GraphicCard>
    <NetworkType> hme0 : Fast-Ethernet </NetworkType>
    <EthernetAddress> 09:00:30:C1:34:90 </EthernetAddress>
    <IPAddress> 149.51.23.140 </IPAddress>
    </Machine>
    </Start>
    Note that i can have more than 1 machines (meaning that i have to loop thru the file to be able to write to the DB)
    Cal u tellme what to do!
    Even better- do u have a piece of code that will help me understand and implement the database writing portion?
    I badly need help here.
    THANX

  • How do i listen to my itunes on my ipad (3) when not connected to wifi? It shows a screen stating that the Itunes store can not be accessed.

    How can I listen to my itunes on my ipad (3) when not connected to wifi? It shows a screen stating that the Itunes store can not be accessed.

    You have to sync your music to your iPad, this can be done from a WiFi connection to your iCloud account for those purchased from the iTunes store.  Non-iTunes music has to be synced using iTunes Match, a fee is charged for that premium service.

  • How is it best to keep files synced between iMac and Macbook?  I work from home on my iMac and then out in meetings on my Macbook and need to have access to the same files on both.

    How is it best to keep files synced between iMac and Macbook?  I work from home on my iMac and then out in meetings on my Macbook and need to have access to the same files on both.  The folders are using Microsoft programmes as this is compatiable with 90% of my colleagues, therefore I can't use the Icloud service.

    No, the camera connection kit only supports the copying of photos and videos to the Photos app, it doesn't support copying content off the iPad. For your second camera instead of the SD reader part of the kit, does the iPad to camera cable not work with it for direct transfer to the iPad ?
    For Lightroom and Nikon software again no - you can only install apps that are available in the iTunes app store on your computer and the App Store app on the iPad, 'normal' PC and Mac (OS X) software are not compatible with the iPad (iOS). There are some apps that perform fairly basic editing functions that are available in the store, but nothing as sophisticated as, for example, Lightroom.

  • HT201412 My ipad has a software problem and does not work, request that it is loaded the software and there is no way that the operating system loads, is not restored. WHAT SHOULD I DO?

    My ipad has a software problem and does not work, request that it is loaded the software and there is no way that the operating system loads, is not restored. WHAT SHOULD I DO?

    This is an iPad user to user forum, so you are not addressing Apple. Depending on how many user helpers are on-line, it may take several hours, or longer, to get a response.
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • HT4890 How do I see what photos are in Icloud?

    How do i see what photos are in icloud?
    I have duplicate photos appearing in my photo library and in another folder underneath the photo library on my Iphone5.  This is killing my free space and i cant delete them from the phone because I dont have that option within those folders.  How do i delete them?

    Good day AMELIASARAH,
    One resolution to your issue would be to update your iPhone using iTunes on your computer rather than over the air. This requires much less space on the iPhone as most of the work is done by the computer. See this article for how to do it -
    If you need more space for an iOS update - Apple Support
    Thanks for using Apple Support Communities.
    Safe computing,
    Brett L 

  • I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance

    I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance
    My iphone is toast, I know I checked on icloud and see my emails from the day before it happened. Can I see when and what my phone backed up through itunes or icloud?
    Please please help i am lost.

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • When I insert an SD card into the iMac nothing happens.  It worked fine until today, I double clicked on the card icon on the desk top and it disappeared! Any suggestions?

    When I insert an SD card into the iMac nothing happens.  It worked until today, when I double clicked on the SD card icon on the desktop and then it disappeared!  Cannot find in "Finder".  iPhoto does not open upon inserting card.  Reformatted card with device (camera).  Used Time machine to restart computer before the double click occurence...did not lhelp.  Any suggestions?

    Have a look in Finder Preferences: Click on the desktop, Finder>Finder Preferences.General tab - is there a tick in "External Disks'? If not, tick it.

  • How can i start to use i chat if it said my password is incorrect and i change it, but still appears that the password is wrong :(

    how can i start to use i chat if it said my password is incorrect and i change it, but still appears that the password is wrong

    Hi,
    AIM
    If this is a Name valid with the AIM servers the password has to be 16 characters or Less.
    The Apple IDs from MobileMe and @Mac.com allow you to create (And prompt your for ) Longer passwords.
    These Names are Valid with the AIM servers but they cannot process the password.
    Use iforgot to Change the password to something shorter.
    Googletalk
    If you are using a Google ID then you have to enter your Google ID as it appears when you log in to the Google Web Mail Page.
    The Mail App seems to allow the Endings (@gmail.com and @googlemail.com) to be used almost interchangeably where as the Jabber Server Google run for Google Talk is stricter (so iChat needs to be precise).
    Also the chat option needs to appear in the Web Mail page.
    If it does not it needs Enabling on you Google Account settings page.
    8:10 PM      Tuesday; July 5, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Is there any way that the magic mouse might work on the iPad?

    I just got the iPad 3 and is there any way that the magic mouse can work alone or with the keyboard on it? If not, can the mouse work with a PC?

    tonefox wrote:
    The magic mouse can't be used with an iPad simply because Apple has chosen not to include support for it.
    Which is fair enough. Where are you going to put this mouse in order to use it with an iPad... you need a handy flat surface... oh, I know - the iPad screen. Much easier than moving your fingertip around it.
    You would put it the same place you put the wireless keyboard.
    In fact the existing keyboard support is one of the big reasons many of us would like to see mouse support added. You see the problem is that when you use a keyboard you have to reach up and over to tap the iPad screen. By Steve Jobs own admission* the arm tires quickly when you have to do this repeatedly. In this particular situation a mouse would be more ergonomically sound.
    There is also the issue of access for the disabled. Although iOS does have many accessibility option, at present none of them help those with severe spinal damage or certain amputees. Including mouse support means you could also use devices like the "suck and puff"... A mouth controlled joystick designed for people with these disabilities.
    * He was talking about touchscreens on notebook computers, but it's the same concept.

Maybe you are looking for

  • Supplier conversion into R12 giving error at site level(AP_INVALID_TCA_ERR)

    Hi All, I am running "Supplier Sites Open Interface Import" for Supplier Site conversion but standard program is failing with the following error msg: "AP_INVALID_TCA_ERROR". Can any one please help me how I can fix this issue. Any help will be Gold

  • Conversion error in PSA

    Hi I am trying to load data from R/3 and i get some erroreneous records in the PSA. The error message says: Error: Conversion foreign curr. -> local curr.: 0020000072 20071218 EUR -> INR I checked the records in PSA and the only currency values that

  • Can`t manage my custom workspaces in CS5 Ai after importing CS4 workspaces

    Here is the folder I pasted my workspaces in from CS4 on XP to Ai CS5 on WIN7 then a screenshot of what my CS5 Ai workspace drop down list looks like... and last a screen shot of the manage workspace dialogue box... When  I choose manage workspaces f

  • BP Role CRM003 - Payer is missing in drop down

    Hi Experts, I found BP role CRM003 - Payer is missing in BP (Tcode) drop down. Please suggest how to get it. Thanks, Shakti

  • BUG REPORT: Ovi suite 2.2.0.245 destroys data when...

    After synching my Outlook 2010 x64 calender items to my mobile (Nokia 6300) with Nokia Ovi suite 2.2.0.245, the detail info (notes) on my appointments are gone in outlook. Really sucks, because all connection details of web meetings and so on, are lo