How to Sign jar file?? (Needed to access a File Outside of JAR)

Hi
We had a program that acces a txt file in the nokia's memory card but we need to sign the program because if doesn't do that we can't access to the file.
Thank you

Hi!!
I tryed and my N70 says "Imposible install the application".
and this is my jad code:
MIDlet-1: VA2, , VA2
MIDlet-Jar-Size: 2030
MIDlet-Jar-URL: VA2.jar
MIDlet-Name: VA2
MIDlet-Vendor: Vendor
MIDlet-Version: 1.0
MicroEdition-Configuration: CLDC-1.1
MicroEdition-Profile: MIDP-2.0
MIDlet-Permissions:javax.microedition.io.Connector.http, com.qualcomm.qjae.gps.Gps
MIDlet-Permissions-Opt:javax.microedition.io.Connector.socket,javax.microedition.io.Connector.file.read,javax.microedition.pim.ContactList.read,javax.microedition.io.Connector.sms,javax.wireless.messaging.sms.send,javax.wireless.messaging.sms.receive,javax.microedition.io.PushRegistry
Thank you

Similar Messages

  • The circuit of my macbook is dead yet the hard drive is fine.  I need to access a file from the hard drive, how can i do this? is there a cable i can connect to another mac that will let me transfer the file?

    The circuit of my macbook is dead yet the hard drive is fine.  I need to access a file from the hard drive, how can i do this? The mac turns on the screen freezes as bright blue.  Is there a cable i can connect to another mac that will let me transfer the file?

    There is another option if the Macbook will start up in Target Disk Mode.
    Restart the computer while holding down the T key. If you see the firewire symbol moving around on the screen you can connect this one to another one in TDM. You will need a suitable cable to connect the two Macs.
    http://support.apple.com/kb/ht1661
    Firewire symbol:

  • HT201250 I have done my back up using time machine, now I have a new mac and I need to access the files that I had saved from my old mac. How can I do that?

    I have done my back up using time machine, now I have a new mac and I need to access the files that I had saved from my old mac. How can I do that?

    Use Migration Assistant on your new Mac:
    Click Continue:
    On the next screen, choose your Time Machine backup disk.
    Don't bother to migrate Applications unless you know they will work on your new Mac. For example, PowerPC applications won't work. Just migrate your user account which will copy all your photos, music, movies, and other documents.
    Note: you will not be able to migrate the information to same account in which you are already logged in. Migration Assistant will tell you that and recommend what to do. It can migrate the information to a new account, but you will have to give it a name you might want to change later. One way around this is to create a temporary account, log in to it, and run Migration Assistant which will replace your normal account. Then, log out of the temporary account, log in to your usual one, verify everyting works as you expect, and delete the temporary one.
    All this can be avoided when you set up a brand new Mac by running Setup Assistant which essentially does the same thing to create your new account, but most people are too excited to do that and elect to migrate later.

  • How do I get my itunes to access music files on external disc hooked up to my imac?

    how do I get my itunes to access music files on external disc hooked up to my imac?

    assuming copy to ... when adding to library is checkmarked in preferences > advanced, drag the files from the external into an open iTunes window while holding the option (⌥) key.

  • Can firefox support "file:///" format to access local files (note 3 fw slashes) this works for IE but not firefox and is the format used in the "afghan war diary" from wikileaks

    can firefox support "file:///" format to access local files (note 3 fw slashes) this works for IE but not firefox and is the format used in the "afghan war diary" from wikileaks

    See http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Have a melody recorder on guitar (AIFF audio file) need to make midi file.

    Have a melody recorder on guitar (AIFF audio file) need to make midi file.
    so i can change the guitar melody into a synth melody.
    any input?
    thanks, technoreid

    You cannot make midi from audio with GB. You'd need a sampler.

  • Mac Died need to access my files on my PC

    I had an iMac g5. It died. I need to use my SATA HD enclosure to access my files. How can I do this? I have MacDrive installed but my drive doesn't work. I am using a Western digital MY BOOK enclosure.
    Please Help!!!!!
    Thanks

    If the drive has died you cannot access anything on it. If the iMac drive is OK, then install it in the WD enclosure provided it's also a SATA drive.

  • Mac died and i need to access my files on my PC

    I had an iMac g5. It died. I need to use my SATA HD enclosure to access my files. How can I do this? I have MacDrive installed but my drive doesn't work. I am using a Western digital MY BOOK enclosure.
    Please Help!!!!!
    Thanks

    Is the Mac harddisk in Windows in the Disk Management console ?
    Maybe this can be helpful http://support.mediafour.com/entries/170461-macdrive-mac-disk-not-seen-by-window s-no-drive-letter
    Stefan

  • [b]Need to access a file which is not specified in the classpath[/b]

    Hi everybody ,
    I need your help to proceed with my application. I've tried accessing a file without setting it in Classpath using getResourceAsStream(..), but i'm getting an error.
    error :
    java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader.java:55)
    at abc.func(LoadProp.java:13)
    at LoadProp.main(LoadProp.java:35)
    Application :-
    import java.io.* ;
    class test
    public void func(String file )
    String thisLine ;
    try
    InputStream is = test.class.getClassLoader().getResourceAsStream(file);
    System.out.println("File load successful");
    BufferedReader myInput = new BufferedReader(new InputStreamReader(is));
    while ((thisLine = myInput.readLine()) != null) {
    System.out.println(thisLine);
    catch (Exception e)
    System.out.println("Inside Catch");
    e.printStackTrace();
    public class LoadProp
    public static void main(String args[])
    String testname = System.getProperty("propfile");
    System.out.println(testname);
    test t = new test() ;
    t.func(testname) ;
    System.out.println("End Main!") ;
    Output:-
    test.properties
    File load successful
    Inside Catch
    java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader.java:55)
    at test.func(LoadProp.java:13)
    at LoadProp.main(LoadProp.java:35)
    End Main!
    Anyone of you help me to get rid of this problem..
    Thanks & Regards
    BK

    It has to be in the classpath for getResourceAsStream
    to "get" it.So if your question is really about needing to read a file which is not in the classpath and won't be, then as long as you have the path to that file, just use FileInputStream to read it.
    InputStream is = new FileInputStream(pathToFileHere);

  • Hard drive recently failed and iPhoto brings a -36 error when copying need help accessing image files

    I recently updated my computer to mountain lion and after doing so my computer would no longer boot up.  I took it to the apple store and they told me that the hard drive was damaged and needed to be replaced.  They were booting my computer with an external drive and in doing so could access my computers HDD.  Upon starting to drag and drop files to a new hard drive I started to get a lot of -36 errors.  I proceeded to go go,e and create my own bootable thumb drive and try doing the same process with more time to look through it.  I have up till now been able to copy most of my files but have run into a problem with iPhoto.
    I have been searching around for a while now and have yet to find a method that helps me in my particular situation so I am now asking for help myself. I will explain what my current system of file recovery is and see if anyone can help me out.
    I have since then replaced the HDD in my computer and purchased a SATA external HDD enclosure for the original drive.  This allows me to still access all files and folders from the original drive.  I have managed to recover a majority of the files but have recently run into a problem with the iPhoto library.  Every time I try to drag and drop the iPhoto library to my new HDD it fails after "transferring" 2.02GB and tells me it has encountered a -36 error because some files cannot be read or written.  I believe I am using iPhoto '09, I will check and confirm that later.
    I am looking for a way to open iPhoto's library and access the image files it seems to be hiding from me. Please understand that I cannot open the iPhoto library either, I have lost access to the library entirely and want to see if there are any image files that I can save.  I dont have the computer backed up recently and want to save my photos.  Thanks for looking and I'm hoping someone can help.

    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command). Rebuild it to the Pictures Folder. This might overcome the -36 issue.
    (This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.)
    Failing that you're into recovering your Originals from the damaged Library and creating a new Library and starting over from scratch.
    Regards
    TD

  • Why is jar packaging needed to access package visibility members?

    javax.swing.text.html.HTMLDocument has (default) package access level members (eg base).
    Simply creating a class in the javax.swing.text.html package does not give me access to the package members of HTMLDocument.
    However, if I jar my class with the rt.jar, then it can access the package members of HTMLDocument.
    Why is this?
    And more importantly, is there another way around this?.. Can I jar my classes in a separate jar file?
    -Kane

    more info on this problem:
    It seems that a different classloader is used for the classes in the jdk than standard user classes. Classes in the jdk are loaded by the bootstrap class loader. So user classes that "pretend" to be part of that package are not recognized unless they are actually a part of the rt.jar file.
    hack solution: use the SystemClassLoader to load those user classes.
    ClassLoader loader = ClassLoader.getSystemClassLoader();
    loader.loadClass("myWannaBeSystemClass");
    Still looking for more elegant solution...
    but hopefully this will hold me over

  • Need to restart the explorer.exe process virtually every single time I need to access a file

    As the subject/title says.
    This is on my replacement ThinkPad W530 which replaced my previous T530. I had my T530 from about April until earlier this week when it was picked up. The T530 gave me nothing but problems, including, but not limited to:
    Constant stalling of everything on the laptop with no mouse movement
    An out of the blue nonfunctioning microphone mute button and fingerprint reader a few weeks after I had the T530's motherboard replaced (because of the stalling issue)
    Every hour or so, I would get successive blackouts of the screen that were about 3-5 seconds apart. Sometimes they would reset the maximisation of the windows I had open
    But I digress; those were issues with my previous ThinkPad. Now the major standout issue I have with my W530 is that pretty much any time I want to access a file, I have to close and restart the explorer.exe process. This results from:
    Not being able to access folders or folder shortcuts on my desktop
    Not being able to use anything on my taskbar including the start menu. This includes hitting the windows key
    NOTE: this is an issue with WINDOWS explorer and NOT INTERNET explorer, which one member of your support team was not able to distinguish - this person tried to direct me to WiFi troubleshooting.
    The only way I have been able to remedy this has been to use task manager to reset it.
    In addition, you would expect a W530 with an i7-3740QM and an Nvidia K2000M Quadro to be pretty much buttery smooth, especially considering it's about 2 weeks old, right? Far from it. This is the slowest excuse for a new laptop that is this well spec'd I have ever used.
    I have done factory resets and pretty much everything under the sun within the realms of the Lenovo periperhal programs to try to remedy it (so as to not void my warranty) to no avail.
    If this problem cannot be fixed without me going well out of my way, then I am demanding a refund. Your support team, whilst generally helpful and *usually* knowing what they are talking about, have not been a help, and have honestly just been another hurdle to get past so I can get my money back. I do applaud them for the willingness to sit and walk people through everything.
    If this is the price I pay for the reliability of a Lenovo ThinkPad, then I greatly look forward to the glorious day I can be rid of Lenovo from my life and making about $500 while I go buy an equivalently or better spec'd laptop from quite literally any other computer company on the planet.

    What operating system are you running? I assume they had you install the latest BIOS. True? If it were mine, I would suggest forcing it to use integrated graphics (in the BIOS) to rule out a problem with the NVidia driver.

  • I need to access a file which is present in LAN of our office.

    Hi,
    In windows I could access a remote file by giving the local IP address in the RUN command and then by giving the username and password I was able to access the files in the local server. But not able to do the same with my iPad?
    Ex: In windows in RUN Command I used to type // 192.168.1.100 ( my local server) after which I used to get a window showing username and password. Once I entered the username and password I was able to access the remote files on this IP and work accordingly.. This I'm not able to do in my IPad?
    Kindly give me a solution?

    There may be some apps in teh app store that would provide this, but no, you will not be able to do it with native iOS functionality.

  • Not Using Index on File Server When Accessing User Files Directly on Server

    It appears to me that on a server with an indexed network share (Desktop Experience and Search Indexing roles/features installed), if you access the share directly on the server using its drive path, you can search the folders using the index, which
    is much faster and supports finding words inside of the files in seconds). However, if you access the same shared folder via its network path from the server itself, the server ignores the index. I have this experience/problem across all shared folders on
    the Windows 2012 R2 Server. Details and my most specific goal follows.
    In addition to a laptop, I frequently work directly on a Windows Server 2012 R2 computer. We have Redirected Folders set up on DFS (for failover redundancy) so that my Documents folder is in:
    \\network\redirections\user\documents. This all works fine on Windows 7 and 8 client computers connected to the network via Offline Files.
    The problem is on the server itself. The server has Desktop Experience enabled and Windows Search is installed. If I navigate manually through the DFS root folder to my documents folder, I can search and it properly uses the index. This proves the location
    is properly indexed. However, if I access the folders through the official "Documents" folder from the Folder Redirection (a network share pointing to the same server computer I'm working on), it performs an un-indexed search (slow and ignores file
    contents, but does find files eventually if the search term is in their filename). Is there a way to force the server to use the indexed search on the Redirected Folders (my Documents folder in particular) when working on that server when logged in locally
    on that server?
    I suspect a workaround would be to go into the Registry and manually change the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders to point to the local DFS folder instead of the network share name, but at least one problem
    with this is then if I save files with links to other files (e.g., a linked Excel table in a PowerPoint, a mail merge to Access database in Word, etc.) on the server computer, those links will point to d:\DFSroot\... (a physical drive on the computer) instead
    of \\network\redirections\user\... (a universally accessible network path) and so none of the other computers will be able to find the linked files, defeating one of the
    major benefits of using Redirected Folders.
    I can't believe that I need to choose between indexed searching and proper path names in saved files. Surely there is a way to use an indexed search on the server itself?
    If you need any more info to help me troubleshoot, please let me know.
    Thanks for any help,
    Colin

    Hi Colin,
    It seems that we can not use indexed search on DFS shares. Windows Search works well when users directly access the server. That is, the server is not made available through Distributed File System (DFS).
    For more detailed information, you could refer to the links below:
    Windows Search Service, Clustered File Services, DFS, Win7 Libraries
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/31ac4c16-948b-4ca4-b18f-3a339cdfd5b9/windows-search-service-clustered-file-services-dfs-win7-libraries?forum=winserverfiles
    Windows Browse and Organize Features
    https://technet.microsoft.com/en-us/library/dd744693(WS.10).aspx
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to change the path of an Access .mdb file @ runtime in Visual Studio 2012

    Hello,
      I'm hoping my question is simple enough to merit a quick answer.  I will lay out the details:
      I am writing a WindowsForms App in VB 2012.  I have a Crystal Report that points to an Access .mdb at design time in order to get the proper structure and layout correctly.
      However, during runtime, I need to point to a completely different .mdb file with the same identical structure.  How do I do this?  I've tried everything I could find on the net with no success and mostly because the answers are for C programmers.  I mean, I can pretty much decipher it, but have gotten zero results.
      Thank you for your time.
    -Mike

    ok. The code needs some small modifications.
    I gave it a quick try and here is the InProc RAS SDK code which works for me. Add the assembly references to the app for all those assemblies used in the 'imports' statements in the code.
    Imports CrystalDecisions.ReportAppServer.ClientDoc
    Imports CrystalDecisions.ReportAppServer.DataDefModel
    Imports CrystalDecisions.ReportAppServer.ReportDefModel
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Web
    Imports CrystalDecisions.Shared
    Partial Class _Default
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim ClientDoc As ISCDClientDocument
            Dim logonPb As New CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag()
            Dim table_Old As New CrystalDecisions.ReportAppServer.DataDefModel.Table()
            Dim table_New As New CrystalDecisions.ReportAppServer.DataDefModel.Table()
            'Open the report object to initialize the ReportClientDocument
            Dim rd As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            rd.Load("C:\Users\Administrator\Desktop\Report1.rpt")
            ClientDoc = rd.ReportClientDocument()
            table_old = ClientDoc.Database.Tables(0)
            'Clone the original table in the report
            table_new = table_old.Clone(True)
            ' Get the connection information from the report document for the first table in the collection.
            logonPb = table_new.ConnectionInfo.Attributes("QE_LogonProperties")
    'set the path for new mdb
            logonPb.Item("Database Name") = "C:\Users\Administrator\Desktop\New folder\efashion1.mdb"
            ' Set a new table for the report, set the old table to the new one.
            ClientDoc.DatabaseController.SetTableLocation(table_old, table_new)
            'view the report
            CrystalReportViewer1.ReportSource = rd
        End Sub
    End Class
    Hope this clears the doubts

Maybe you are looking for