Can't find ME API for working with files.

Hello
I creating something like simple paint for my mobile phone, but
I don't know how to read list of existing on my phone files.
Thanks for any help,
Andry.

Hi
I find the answer for me question (if anyone have the same problem).
For listing files in directory I used APIs from PDA Optional package (JSR 75) . The only one problem -- not all phones support that APIs (My SE K750i does).
Hope it will halp someone,
Andry.

Similar Messages

  • Where can i find the theory for alv with function modules

    hi
    where can i find the theory for alv with function modules

    Hi,
    Please check this link
    http://sap.niraj.tripod.com/id66.html
    ALV function module
    http://wiki.ittoolbox.com/index.php/How_do_I_insert_a_logo_in_ALV_using_Function_Modules%3F
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/using-function-module-fm-reuse_alv_grid_display-to-display-a-report-in-alv-1472543
    reward if helpful
    raam

  • Where can I find the schema for config.xml file of jax-rpc

    For the xrpcc tool I need to create a config.xml file, does any body know where can I find the schema for it?

    http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXRPCxrpcc.html and all your questions will be answered... except maybe why aren't these pages linked from the main index anymore? (they were when 1.0 of the tutorial was released, but then there were no docs for wscompile or wsdeploy. The JAX-RPC release notes fixed the latter, but around 1.0_01 they broke the former.)

  • I upgraded to Mavericks and can't find a driver to work with my EPSON Perfection 4990 scanner.  The Epson site says to update thru my mac but it there is nothing there.  Any suggestions?

    I upgraded to Mavericks and can't get my Epson Perfection 4990 scanner to work.  I had gotten it to work with a driver I downloaded from EPSON with Mountain Lion

    Hi...
    Epson is vorking on updating drivers and utilities for this scanner.
    From the epson site :
    "Description:
    An OS X 10.9 compatible Scanner Driver and EPSON Scan Utility for this model is not yet available but is coming soon. Please check back for availability."
    So, until then you can only use the basic scanning provided by Image Capture.
    Alternatively take a look on vuescan.
    Regards
    /Dennis

  • Java API for working with digital signature.

    Hi,
         I have to check whether a pdf form is modified since it is digitally signed, using a java program.
         Are there any java APIs(provided by SAP) available for that?
         Can I use IWDPDFDocument API in java program? I tried it but I am getting 'classnotfoundexception'.
    Thanks,
    Prabhakar.

    may i know what service pack of SAP NetWeaver  Developer Studio version are you using?
    as the "IWDPDFDocument" is only available on SAP NetWeaver 2004S SPS 10 and above
    and you just need to import either this two class
    com.sap.tc.webdynpro.clientserver.adobe.api
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.api 
    hope this information could help you
    Regards
    Jia Jun

  • Where can I find Java Plugin that works with Firefox 31.1 on Mac OS 10.68

    I applied just release 'Java for mac OS X 10.6 Update 9'. I am running Firefox 13.1. I did not need a Java Plug-in before but Apple has changed that. Now I need to get a Java Plug-in for Firefox 13.1. I searched and looked at lots of URL, including official Java site and can not find a Java Plug-in for Firefox 13.1. Is there one and where is it?

    Hello,
    please update Java using the Software update feature of Mac OS X:
    Go to [Apple menu] > Software Update and check for available updates.
    --Tobbi

  • Java API for working with Pivot Tables...?

    Hi,
    I want to create/modify an existing pivot table in an excel sheet. Is there any open source available to work on pivot tables.
    I have seen few articles mentioning that POI supports updation of data, though the apache site says that it does not support working with pivot tables. I am able to copy an existing excel template with pivot table to a new excel using poi but am stuck with updating....
    Thanx,
    Praveen.

    Hi,
    The JExcelAPI does not support working with pivot tables... I am still in search of an open source to work with pivot tables....
    btw, we are able to update an existing pivot table using apache poi. But we need to change the data range of the pivot table during run time... Am stuck with this... Has anyone come across any open source to work with pivots???
    Regards...

  • Where can I find mechanical keyboard for mac with nordic layout?

    I could find mechanical keyboards for mac, just not in nordic layout.

    On nordic layout keyboards, we have these letters: Æ Ø Å on the right side of the keyboard
    Additional physical keys are not needed, and no keyboard is likely to provide them. Instead, a keyboard translation table (software already included in your Mac) is used to change the function of the keys to the right of and below the P key.
    In the three Norweigian keyboard translations, those key translations [ Æ Ø Å ]are provided. One of the Swedish translations provides them as well. The only thing missing is the graphic on the standard key-cap. Use a sticker or a sharpie marker to write the graphic on the key.

  • Help...where can i find the api for XSLTProcessor

    Anyone can help me on tis....
    i hav already
    import org.apache.xalan.xslt.*;
    to my program which look like tis
    //program Simpletransform.java
    //necessary import files
    import org.apache.xalan.xslt.*;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    import org.apache.xerces.parsers.DOMParser;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform {
    public SimpleTransform(String xmlFile, String xslFile, String outFile) throws
    java.io.IOException, java.net.MalformedURLException,
    org.xml.sax.SAXException {
    // Load the XSLT Processor.
    XSLTProcessor xsltProc = new XSLTProcessorFactory.getProcessor();
    // XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    xsltProc.process(new XSLTInputSource(xmlFile),
    new XSLTInputSource(xslFile),
    new XSLTResultTarget(outFile));
    System.out.println("************* The result is in the " + outFile +
    " file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args) {
    try {
    SimpleTransform st = new
    SimpleTransform("example.xml", "example.xsl", "example.out");
    catch (Exception e) {
    System.out.println("Exception caught = " + e);
    public SimpleTransform() {
    but still there is error which look like tis
    C:\A>javac -classpath C:\j2sdk1.4.2\lib\xerces.java;C:\j2sdk1.4.2\lib\xalan.jar
    SimpleTransform.java
    SimpleTransform.java:6: package org.apache.xerces.parsers does not exist
    import org.apache.xerces.parsers.DOMParser;
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : class XSLTProcessor
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : variable XSLTProcessorFactory
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:22: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    xsltProc.process(new XSLTInputSource(xmlFile),
    ^
    SimpleTransform.java:23: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    new XSLTInputSource(xslFile),
    ^
    SimpleTransform.java:24: cannot resolve symbol
    symbol : class XSLTResultTarget
    location: class SimpleTransform
    new XSLTResultTarget(outFile));
    ^
    6 errors
    CAn onyone help me???Thank you

    you are using an older version of xalan, & the latest version of xalan.jar does not have these classes anymore. to transform the given xml, use the following code :
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.Source;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform
    public SimpleTransform() throws TransformerException, FileNotFoundException
    // Load the XSLT Processor.
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Source xslSource = new StreamSource( "config/birds.xsl" );
    Transformer transformer = tFactory.newTransformer( xslSource );
    transformer.transform( new StreamSource("config/birds.xml"),new StreamResult( new FileOutputStream( "config/birds.out" )));
    System.out.println("************* The result is in birds.out file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args)
    try
    SimpleTransform st=new SimpleTransform();
    catch(Exception e)
    System.out.println("Exception caught = " + e);
    also, use the latest version of the xalan jar, which is xalan2.6.jar

  • I have a 2g ipod touch with the 4.2.1 update. I can barely find any apps that work with this. Can you please let me know some of the apps that will work?

    Please help.

    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Apple Club - filter apps by iOS version.
    App Store: Downloading Older Versions of Apps on iOS - Apple Club

  • Where can I find reference docs for descriptor xml files?

    Hi,
    I am trying to do some analysis on an existing application. I have all the descriptor xml files and want to get detailed information on the options available on each tag. For example, there is a <maintain-cache> tag within the <query> tag and I would like to find the details of the options available. Is there a DTD or XML schema definition available where these options are discussed in detail? I'd prefer to see this discussion from the XML descriptor file (lowest level) perspective.
    Thanks

    Although TopLink's meta data is generally used in XML it is typically modified using the mapping editors (standalone Mapping Workbench or JDeveloper integration). These provide access to all of the configurable options. In addition some customer extend or write their descriptors in code using the documented API.
    The best way to interpret the XML is to use the XSD in conjunction with the API. You will find the organization of the XSD matches the programmatic API in the JavaDocs.
    Doug

  • Office 365 addin. JavaScript API. Working with files.

    Please help me.
    Is there any posibility to get url for created document from my addin with JavaScript API?
    May be I need to use OneDrive.

    You are creating a Word 2013 app? If so, you might want to post your question here:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=officegeneral
    Are you trying to get the URL that the document was opened from?
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Can't find sound drivers for windows xp

    So I have a Satellite c655-s5061 which usually runs windows 7. I added a dual boot so now I have windows xp and windows 7. I did this because a game wasn't saving correctly in windows 7 and I figured I could play them better on xp anways with lower system requirements. The only sound I ever really hear is a beep. My problem is I can't find any drivers that work with windows xp to get my speakers to work. Any solution?

    Satellite C655-S5542
    Try this one from HP.
       Conexant High Definition Audio Driver
    But the best way to get Windows XP on that machine is to upgrade to Windows 7 Professional (very simple) and add the free XP Mode.
       Windows Anytime Upgrade
       Windows XP Mode and Windows Virtual PC
    If Toshiba does not enable hardware virtualization in that BIOS, there's a workaround.
       Error message about hardware-assisted virtualization for Windows XP Mode in Windows Virtual PC on a ...
    -Jerry

  • Work with Files in Java

    Hello!
    Can anyone help me. How can I API in Java Technology for files to find ?

    don't uite understand your question.
    here's the location of java API for File class, for working with File and Directory..
    http://java.sun.com/j2se/1.3/docs/api/java/io/File.html
    for reading and writing..you may want to look at th eio package for classes such as
    Reader, FileReader, BufferedReader, Writer, FileWriter, BufferedWriter
    here's java API
    http://java.sun.com/j2se/1.4.2/docs/api/

  • I can't find a download for safari that works with my 10.7.5 OS

    Trying to find a download that works with 10.7.5.  Any suggestions?

    You need to install Lion:
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

Maybe you are looking for

  • Problems opening attachments from outlook

    This week I have been unable to open attachments from Outlook 2010. I use Firefox as my browser and for some reason when I click on an attachment it is downloaded into Firefox. This has only just started to happen. If I try to open a PDF document I w

  • How to use standard print prog SAPFM06P in an ECC 6.0 environment?

    Dear all, I am working in an Upgrade proj, and I find this print prog SAPFM06P remarkably different in both the systems 4.6C & ECC 6.0. It seems the ECC 6.0 print program is configured for an Adobe form. But the requirement I have is that of printing

  • Indexes created in database

    Hi, on FSCM 91, on Win 2008, Tools 8.52, DB Oracle 11g. If an index is created not in Application designer (but in for example in SQLPLUS) would it be used by PeopleSoft when browsing or running a batch by Process Scheduler ? In other words the index

  • How to resolve Nqserror:15033 : FACT_TABLE does not have a properly defined

    Hello All, I have a model wherein when i modify a join(b/w a fact and a dim1 is modified to fact and dim2), i get the following error.. [nQSError: 15001] Could not load navigation space for subject area SA. [nQSError: 15033] Logical table Fact_Market

  • Change column border color?

    Thanks in advance for assisting me with this problem. With regards to the column border on a master page, how do you change the color of the border? Within inDesign, column borders appear as a light gray, which is exactly what I need. However, when I