Problem in saving modified rtf file in jsp

hi,
I have [b]problem in saving modified rtf file in jsp. My scenario is like this:
I need to open rtf file in jsp and allow user to modify it, after user modifies rtf file in browser, user will press send button. After user pressing send button rtf has to be saved into destination directory(the directory from which its been fetched. I appreciate if any one could send me relevant code for the same.
thanks
ram

1) RTF is not opened in your browser, but in an application that is set to handle the file type (like Word or Wordpad)
2) from the web you have no control over what that application does
3) conclusion: what you want is not possible using the web
Other than that, asking for code without showing that you put some effort into the problem yourself is a sure way of getting flamed. You should know that by now, since you registered more than 2 years ago...

Similar Messages

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • Problem with saving an Ai file to PDF in Illustrator CS4 Professional

    Hello guys, I have an interesting problem.  The machine has Windows Vista Enterprise with the latest updates and office 2007 Pro+.  The version of adobe installed is Adobe CS4 Professional, in which has the Illustrator and Acrobat updated to the latest patches.  This has happened to the user over the weekend; all of the sudden when she tries to save an Ai file to PDF, it hangs not even bringing up the dialog box.  However, in all the other Adobe programs are able to save it as a PDF.    Now I am able to print from Illustrator into Acrobat, but it doesn't save it to a full sized "page".  I tried saving any Ai file to a different file and then try to save as a PDF....no dice.   This is the second time around where this has happened.  Now here is the kicker, since I'm an admin it will work like a charm under my login; the user is a restricted user (no admin rights).  I also changed the default printer for her, to a local printer.. (read somewhere about that)  no dice.  Any help would obviously be appreciated.  THX

    Yup, that could also be possible.  Had a similar problem where the IE add-in for Adobe Reader did not work anymore. And I had to get a patch from MS for office.  And it was only available by request only.

  • Problem displaying Word 2002 RTF files in JEditorPane

    Hi all,
    I am having a problem displaying RTF files created in Word 2002/Office XP in a JEditorPane.
    Our code, which does the usual stuff:
    JEditorPane uiViewNarrativeEda = new JEditorPane();
    uiViewNarrativeEda.setContentType(new RTFEditorKit().getContentType());
    FileInputStream inDocument = new FileInputStream("c:/temp/testing.rtf"); uiViewNarrativeEda.read(inDocument, "");
    inDocument.close();
    works just FINE with RTF files created in Word 97, WordPad etc, but it seems that Word 2002 adds some tags to the RTF file that the RTFReader cannot handle.
    For example, I believe the following exception is due to the new \stylesheet section that Word 2002 adds to the RTF file:
    java.lang.NullPointerException:
         at javax.swing.text.rtf.RTFReader$StylesheetDestination$StyleDefiningDestination.close(RTFReader.java:924)
         at javax.swing.text.rtf.RTFReader.setRTFDestination(RTFReader.java:254)
         at javax.swing.text.rtf.RTFReader.handleKeyword(RTFReader.java:484)
         at javax.swing.text.rtf.RTFParser.write(RTFParser.java, Compiled Code)
         at javax.swing.text.rtf.AbstractFilter.readFromReader(AbstractFilter.java:111)
         at javax.swing.text.rtf.RTFEditorKit.read(RTFEditorKit.java:129)
         at javax.swing.text.JTextComponent.read(JTextComponent.java:1326)
         at javax.swing.JEditorPane.read(JEditorPane.java:387)
    Does anyone have similar problems or knows how I could get around this?
    I thought about writing a parser that replaces the \stylesheet section with one that works but that seems a lot of work and it does not always work (I tried that by copying and pasting...).
    Maybe I could replace the RTF converter that Word 2002 is using with another one - but how?

    Hello again,
    I found out that the 2002 version of MS Word writes a lot more of data into the file than e.g. Wordpad does.
    There is one section that causes the problem, its called "\stylesheet".
    My workaround (working in my case) is to wrap the input stream of the RTF document and remove this section (only in memory).
    See example implementation:
    <<<<<<<<<<<<<<<<<<<<<<< SOURCE CODE<<<<<<<<<<<<<
    * Copyright 2004 DaimlerChrysler TSS.
    * All Rights Reserved.
    * Last Change $Author: wiedenmann $
    * At $Date: 2004/03/31 11:08:54CEST $.
    package com.dcx.tss.swing;
    import java.io.*;
    * This class provides a workaround for parse errors in the
    * {@link javax.swing.text.rtf.RTFEditorKit}. These errors are caused
    * by new format specification for RichTextFormat (RTF V1.7).<br>
    * <br>
    * The workaround is to filter out a section of the RFT document
    * which causes an exception during parsing it. This section has no
    * impact on the display of the document, it just contains some
    * meta information used by MS Word 2002.<br>
    * The whole document will be loaded into memory and then the section
    * will be deleted in memory, there is no affect to the document
    * directly (on file system).<br>
    * <br>
    * <i>This workaround is provided without any warranty of completely solving
    * the problem.</i>
    * @version $Revision: 1.1 $
    * @author Wiedenmann
    public class RtfInputStream extends FilterReader {
    /** Search string for start of the section. */
    private static final String SEC_START = "{\\stylesheet";
    /** Search string for end of the section. */
    private static final String SEC_END = "}}";
    /** Locale store for the document data. */
    private final StringBuffer strBuf = new StringBuffer();
    * Wrapper for the input stream used by the RTF parser.<br>
    * Here the complete document will be loaded into a string buffer
    * and the section causes the problems will be deleted.<br>
    * <br>
    * @param in Stream reader for the document (e.g. {@link FileReader}).
    * @throws IOException in case of I/O errors during document loading.
    public RtfInputStream( final Reader in ) throws IOException {
    super( in );
    int numchars;
    final char[] tmpbuf = new char[2048];
    // read the whole document into StringBuffer
    do {
    numchars = in.read( tmpbuf, 0, tmpbuf.length );
    if ( numchars != -1 ) {
    strBuf.append( tmpbuf, 0, numchars );
    } while ( numchars != -1 );
    // finally delete the problem making section
    deleteStylesheet();
    * Deletion of the prblematic section.
    private void deleteStylesheet() {
    // find start of the section
    final int start = strBuf.indexOf( SEC_START );
    if ( start == -1 ) {
    // section not contained, so just return ...
    return;
    // find end of section
    final int end = strBuf.indexOf( SEC_END, start );
    // delete section
    strBuf.delete( start, end + 2 );
    * Read characters into a portion of an array.<br>
    * The data given back will be provided from local StringBuffer
    * which contains the whole document.
    * @param buf Destination buffer.
    * @param off Offset at which to start storing characters -
    * <srong>NOT RECOGNIZED HERE.</strong>.
    * @param len Maximum number of characters to read.
    * @return The number of characters read, or -1 if the end of the
    * stream has been reached
    * @exception IOException If an I/O error occurs
    public int read( final char[] buf, final int off, final int len ) throws IOException {
    if ( strBuf.length() == 0 ) {
    // if buffer is empty end of document is reached
    return -1;
    // fill destination array
    int byteCount = 0;
    for (; byteCount < len; byteCount++) {
    if ( byteCount == strBuf.length() ) {
    // end reached, stop filling
    break;
    // copy data to destination array
    buf[byteCount] = strBuf.charAt( byteCount );
    // delete to copied data from local store
    strBuf.delete( 0, byteCount + 1 );
    return byteCount;
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Integration of the warpper looks like:
    RtfInputStream inDocument = new RtfInputStream( new FileReader("test.rtf"));
    Document doc = rtf.createDefaultDocument();
    rtf.read(inDocument, doc, 0 );
    Hope this helps - for me it did :-)
    Timo Wiedenmann
    DaimlerChrysler TSS, Germany

  • Problem involving saving over indesign file and pdf

    Kind of a strange one this one....
    I'm currently working on a magazine and have several InDesign files in one folder that i'm working on and a seperate folder where I have saved exported pdf versions of these files. The files are the same names in ach folder eg '1 - 40'  '2 - 39' and so on
    I accidentally saved over one of my InDesign files so I understand I will not be able to recover it as I wasnt using any backup utility.
    However before I saved over the file I had created a pdf version of it and saved it in my pdf folder.  So i'm thinking not all is lost as I can use the pdf file to send to the printers.
    Now here's the strange bit - I am using PC and when I open explorer I can see the folder icon where all my pdf files are saved and can actually see the 'lost/saved over' pdf version as one of the mini thumbnails for that folder - but when I click on the folder to view the files inside it isnt there - instead it shows a thumbnail of the file i saved over it with...!?!
    I'm thinking is there somekind of automatic updating PDF export setting that I may have selected or is it possible that folder icon is using a snapshot of what was inside at a certain point??
    Either way I could really do with recovering this PDF - if anyone has any suggestions i'm more than happy to hear them.
    Thanks
    Mark

    i thought this would help a little
    This is the folder icon - in which all my pdf's are.  The top left thumbnail is the 'missing/saved over' pdf.  So you'd think it would be in there?
    Below is a view of the contents of that folder - (for those of you with good eyesight) you can see that the top left thumbnail from the above picture is nowhere to be seen in this folder!!

  • Problem accessing variables from java file to JSP page

    Hello Everyone,
    I have small problem accessing my method variables from my java bean file to a JSP page. can some please take a look and tell me why I can't populate my JSP page, I've been trying all day to get this done!!!
    This is my Java file
    package dev;
    import java.io.*;
    import java.util.*;
    public class RoundDetail2
    public String string_gameID;
    public int string_card1;
    public String readDetail_topLayer;
    public static final String SUITS[] = {" ", "Clubs", "Hearts", "Spades", "Diamonds", "Joker", "FaceDown"};
    public static final String VALUES[] = {"Joker ","Ace", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Jack", "Queen", "King"};
    public static final String SuitVALUES[] = {" ","1","2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14"};
    public RoundDetail2() throws FileNotFoundException
    DataInputStream inFile=
                 new DataInputStream(
                    new BufferedInputStream(
                   new FileInputStream("C:/apps/jakarta-tomcat-4.0.6/webapps/ROOT/WEB-INF/classes/dev/Data_452SY2.txt")));
    try { 
                 while((readDetail_topLayer = inFile.readLine()) != null)
              StringTokenizer tokenizer_topLayer = new StringTokenizer(readDetail_topLayer,"\t", true);
                   while  (tokenizer_topLayer.hasMoreTokens())
                        string_gameID = tokenizer_topLayer.nextToken();
         catch(IOException e)
                    System.out.println(e.getMessage());
         Thanks KT

    ......How are you declaring the class in your JSP? ... are you instantiating it as a bean using the useBean tag, or just instantiating it in your code like normal.
    Maybe you could post the relevant JSP code too?
    Hello again,
    Only the last string is populating after the file has be tokenized. What I'll like to accomplish is passing the very first string in the file. I did not get too far in the JSP file setup because the code is still in it's testing stage, but any help will be highly appreciated.
    Here is the JSP code
    <%@page import="dev.*" %>
    <%@page session="true" language="java" import="java.io.*" %>
    <jsp:useBean id="wagerhist" scope="request" class="dev.RoundDetail2" />
    <html>
    <head>
    <title>Round Detail</title>
    <body>
      <table width="530" bordercolor="#000000" valign="top">
        <tr>
              <td align="left"  width="19%">Game ID<%=wagerhist.string_gameID%></td>
              <td align="left"  width="30%">  </td>
              <td align="left"  width="20%">card1</td>
              <td align="left"  width="31%">  </td>
            </tr>
      </table>
    </body>
    </html>

  • CS6 Color Channel Problem When Saving Oil Paint Files

    When I save an OIL PAINT file created in Photoshop CS6, it saves with red and blue shapes over the image. Before saving, the image looks fine. I'm running windows 8. Is it me or a CS6 bug?

    There were some driver problems that caused single tile artifacts when running Oil Paint.
    Have you updated your video card driver from the GPU maker's website?

  • Audio sync problem after saving to QuickTime file

    Hi there, I'm relatively new to Adobe Premiere - I'm not quite knowledgeable enough about video editing to really use it to its full potential but needed something more flexible than Windows Movie Maker.  I haven't had any problems before editing smaller files, but am having tons of trouble with a 2.7 gig file.
    I'm trying to take a 2.7GB .MOV file recorded on a Kodak Zi6 and divide it into three roughly equal parts to use an email sharing service that has a maximum file size of 1GB (I know that there are sites that will allow 3GB files and I wish I could use them, or use an FTP server, but the person who needs the video needs it to be sent over his own company's file sharing system).  It was recorded on an 8GB SD card, that SD card was put into my computer, and I then transfered it over to Premiere Elements 8.
    I rendered the entire file first (it wouldn't even play until I did that) and after rendering, the audio and video were good and everything was synced up.  I then split the clip into three and saved each as a separate project.  Then I opened one up again and tried to save as a Quicktime file (that's what the person I'm sending it to requested).  All seemed to go well, and for the first minute or so of the 15 minute clip everything is great.  Then after that, the audio gets more and more out of sync as the video plays on.  I tried playing it on several different players, same thing.
    My computer (a Cyberpower PC) is running an Intel Core i7 CPU, 870 @ 2.93GHz 3.06 GHz; 8 GB of RAM; NVIDIA GeForce GTX 285; Windows 7 Home Premium.  I'm not sure where to get the rest of the information requested in the "How to best ask for help" post but if you can give me some guidance I'll find it.
    The presets are on the defaults because I wasn't aware of them until I came to this forum.  Happy to try the whole process again if someone can tell me what the presets should be changed to.
    I'm looking for a solution to this particular problem, but am also looking for some basic help about files.  The files that I used most often usually come from a Kodak Zi6 (.MOV) or a Flip Mino HD (MPEG4 I think; had to convert those to something else to use them in Premiere at all).  I have AVS Video Converter 6, so I can convert those files to pretty much anything.  I'm wondering what I should convert files to before trying to edit them in Premiere, and how best to save them.  I rarely use the files anywhere but online if that helps (this particular 2.7GB file being a big exception) at a maximum width of 550 pixels, so I don't think I need the quality to be all that great; it's more important to me to be able to work a bit quicker, without rendering that takes hours.
    I'd also love to take advantage someday of some of the more advanced features of Premiere, so I was wondering if anyone knows of any tutorials that will walk me through things in a linear way (as in, start from the beginning and teach me what I need to learn before moving on to something more complicated).
    Thanks so much for your help, and please speak slowly; I'm in over my head!

    Very well-done post, and welcome to the forum.
    First, many have issues with OOS (Out Of Sync) with QT files on Export/Share. This is not just with PrE, but PrPro also. Unfortunately, OOS is pretty easy to fix, when you encounter it on the Timeline, but almost impossible to fix when it creeps in during Export. As an aside, I fought some MPEG Audio from a client, that was perfect in the Timeline, but when Exported to MPEG-2 for DVD-Video, ALWAYS went OOS dynamically, and even adjusting for that on the Timeline (rather guessing how much OOS the other direction I needed,) just flat would not do it. Sync would be fine for awhile, and then suddenly start going out, before miraculously returning to sync with the next Clip. Never could get that one correct.
    In your MOV Export/Share, I am not certain which CODEC you chose. Was it H.264?
    Within the MOV "wrapper," did your recipient give you any options for the enclosed CODEC's, or is the wrapper and the file size the determining factors?
    Wish that I had more to offer directly, rather than questions.
    As for the tutorials, I strongly recommend Steve Grisetti's Learning Series, his Boot Camp and his many articles and general PrE tutorials on Muvipix. He also has several books, available there too.
    Good luck,
    Hunt

  • Problem with saving/loading a file

    hi everyone,
    i hav a program that consists of animal that are jlabels with icons and i put these animals in an array and save them. when i save the file i catch this error message: sun.awt.image.ToolkitImage
    when i try to load the file i catch this error: writing aborted; java.io.NotSerializableException: sun.awt.image.ToolkitImage
    Now i got this :public class Animal extends JLabel implements MouseListener, Serializable{, for my animal class and every other class associated with the animal class also implements Serializable.
    i think its because im using an Image object in another serialised class. what can i do to fix this thing (Does it have anything to do with tooltiptext coz i got that for each jlabel). Any help is appreciated
    regards,
    gher111
    Message was edited by:
    prodigy111

    Most image implementations are not Seriliazable so if you have a field possibly in an outer class which refers to an object etc which contains an image you have a problem.

  • Problem in saving edited pdf files in phone

    it only occur when I save a notation or highlighted text in the PDF file ( around 7.1MB) but when I try to a lower size pdf file, the file is been saved.

    Make sure you disable the Preview pane in Windows Explorer.

  • Reference vs. Importing; Saving modified referenced files; Phanfare

    I just switched from PC to MAC. Previous editing was limited to Kodakgallery and Canonzoombrowser, and all photos were stored in folders and any edits modified the original (or I could create a new version). My goal is to be organized and efficient - my purpose for pictures is to share online (phanfare) with family and friends - so more "documentary" and less "artistic".
    I'm new to Aperture, and I want to know if I should reference the library (and keep storing in Finder as files - so that I can continue to organize by YEAR - MONTH - EVENT. Or, will Aperture be better (for my purposes) for organizing?
    Next - editing. I like "auto-enhancing" all of my pictures, cropping to best fit, and correcting red-eye. In the end, I want to keep the modified picture and delete the less-attractive original. For any photos that I "play" with by changing to black and white and using other aperture enhancement features, I don't mind just having aperture create a version and keeping the original. What do you suggest for me to do??? Can aperture do this??? I would prefer to use ONE method to manage/enhance pics - trying to streamline my life.
    Also, for any "versions" created by Aperture - can you access those through folders or can you only access them through Aperture.
    Finally - for uploading to Phanfare - will Phanfare retain titles created in Aperture (I like to "title" all pictures - because again, I'm more of a documentary picture taker. I end up creating a sort of blog for family/friends to follow our life. The enhancements I do mostly for framing, creating scrap books, and other artistic products). And second, when I upload to Phanfare - will it upload only the masters or will it also upload the modified files???
    ANY ADVICE IS MUCH APPRECIATED! I'm new to MAC, Aperture/iphoto, and Phanfare - but I THINK those are the best way for me to go for what I'm looking for.... Thoughts??? THANK YOU!

    merakyle wrote:
    I'm new to Aperture, and I want to know if I should reference the library (and keep storing in Finder as files - so that I can continue to organize by YEAR - MONTH - EVENT. Or, will Aperture be better (for my purposes) for organizing?
    The key concepts are:
    -- You use Aperture, not the Finder (Explorer on a PC) to manage your images.
    -- You manage images, not files. As you manage images, not files, you are not limited to one organization; you can have several at the some time - thus you can organize your images by date AND subject, not just one or the other.
    -- You can dump all of your FILES into a "managed" library (what I do) in which case your files will be neatly organized by date of import. Or, as Sierra Dragon strongly recommends, you can organize the files anyway you want in a "referenced" library. In any case, remember, the physical arrangement of files on disk has nothing to do with the logical arrangement of images in Aperture. Get this straight and you are halfway home.
    Next - editing. I like "auto-enhancing" all of my pictures, cropping to best fit, and correcting red-eye. In the end, I want to keep the modified picture and delete the less-attractive original.
    You can do this, but why? Aperture is designed to protect your original from ever being physically modified while still allowing you to create a virtually unlimited number of "versions" with only a tiny overhead on disk. AND, you can undo what you have done at any time.
    For any photos that I "play" with by changing to black and white and using other aperture enhancement features, I don't mind just having aperture create a version and keeping the original. What do you suggest for me to do??? Can aperture do this??? I would prefer to use ONE method to manage/enhance pics - trying to streamline my life.
    See above. Aperture does all of this, and more, automagically. You are worrying about physical file management; pay attention to the photos, not the files. And certainly, there is no reason to worry about red eye, etc., before loading into Aperture - Aperture's tools for this sort of thing are excellent.
    Also, for any "versions" created by Aperture - can you access those through folders or can you only access them through Aperture.
    An Aperture "version" is a tiny, 30 KB file; actually, the preview is likely to be larger. In any case, you see, manage, and "adjust" your images in Aperture, not the Finder.
    Finally - for uploading to Phanfare - will Phanfare retain titles created in Aperture (I like to "title" all pictures - because again, I'm more of a documentary picture taker. I end up creating a sort of blog for family/friends to follow our life. The enhancements I do mostly for framing, creating scrap books, and other artistic products). And second, when I upload to Phanfare - will it upload only the masters or will it also upload the modified files???
    I use PBase, not Phanfare, but I suspect that the concept is the same:
    -- Load image into Aperture.
    -- Adjust as desired.
    -- "Export" a low resolution JPEG for the web to your Desktop or similar folder. (An export creates a copy.)
    -- Upload those JPEGs to Phanfare.
    -- Once the image is on Phanfare, DELETE the exported copy. Aperture still has your original and any versions you created. With Aperture, you save the originals and dump the copies; you can always make more.
    ANY ADVICE IS MUCH APPRECIATED! I'm new to MAC, Aperture/iphoto, and Phanfare - but I THINK those are the best way for me to go for what I'm looking for.... Thoughts??? THANK YOU!
    My workflow is very similar to yours. The key thing is that Aperture protects your originals (and your edits) against re-compression or any other form of damage. Web images need only be relatively low res and there is no reason to garbage up your disk with them - export 'em, upload 'em, delete 'em. Repeat as needed.
    Hope this is clear enough to be helpful.
    DiploStrat

  • Problems on saving a binary file

    Hi,
    I have a String object that I need to save on disk, in binary format, for a database implementation project. I am using the FileOutputStream class, like this:
    FileOutputStream fos = new FileOutputStream("file.db");
    byte[] arrayBytes = new byte[myStr.length()];
    arrayBytes = myStr.getBytes();
    fos.write(arrayBytes);
    fos.close();
    The problem is that it saves the string in text (ASCII) format. If I open the file in Notepad it displays all the characters of the string, in a readable format, as it were a .txt file.
    I have some friends implementing the project in Delphi, using a class called "FileWriter". Their file is not readable in Notepad. If we try to open it in notepad, only some characters are readable, other are junk characters.
    As my professor doesn't want the database file to be readable by an ASCII editor, what can I do to save my String in binary format, like "FileWriter" class in Delphi?
    (he said I can't serialize the object to disk)
    The strange thing is that the FileOutputStream class documentation says it writes raw bytes of data. If they are raw bytes, how can I read them in notepad?
    It's confusing to me... Is there any solution for what I need?
    Thanks for your time and help.
    Leo Hyppolito.

    Like I said - search around. Something simple is:public class XOR {
        public static void main (String[] args) {
            String s = "Hello";
            s = flip (s);
            System.out.println (s);
            s = flip (s);
            System.out.println (s);
        private static String flip (String s) {
            String flippedString = "";
            for (int i = 0; i < s.length (); i ++) {
                flippedString += flip (s.charAt (i));
            return flippedString;
        private static char flip (char c) {
            return (char) (c ^ 0x5678);
    }Kind regards,
    Levi

  • Problems on Saving a text file

    the "Java Programming" forum is more active compare to "CLDC-MIDP" and "WTK" forum that's why I posted my problem here just case in MIDP programmer dropped by.
    My problem is my phone (Nokia 6260) contains MIDP2.0, the problem is, it has no JSR-75/File Connection API... my application is runs perfectly on my WTK2.2 because it has a JSR-75 jar file...
    but it wont run on my Nokia 6260 phone because of FileConnection API is missing... my question is, is it possible to install the JSR75 on my mobile Nokia6260 phone?
    again, my apology for posting my grievance here...
    thank you so much...

    You can do it by upgrading your firmware .
    If there is upgraded firmware supporting JSR75 then it might solve your problem.

  • CS3 problems in saving and opening files and uninstalling software

    ?? In CS3 Photoshop I get error message "Could not complete the SAVE AS command because of a program error?"  or "Could not complete your request because it is  not the right kind of documente?.
    I can save files as bitmap but not as psd, jpg, or tiff.  Is there a link that correlates all error messages?  Also, I am unable to uninstall the CS3 software.  I have my original CS3 software to install, but it will not install over existing file that can not be uninstalled.  Yes, I need help and thanks in advance.

    Read this article regarding installation issues and this one as well. if you are able to reinstall, everything should work out just fine. if not, come back with more pertinent questions and we will try to help
    Mylenium

  • Problem loading resources file in JSP using f:loadBundle

    Hi,
    We are facing problem while loading our properties file in JSP using f:loadBundle.we tried the following way
    <f:loadBundle basename="resources.ApplicationResource" var="msg"/>
    This properties file is src java folder and also in WEB-INF-->classes->resources folder
    but even then its not able to load.I made an entry in the faces-config for message-bundle. But of no use.
    Any pointers would be of great help.

    does your file calls
    ApplicationResource.properties ?
    If so is it in
    the package resources ?

Maybe you are looking for

  • Display driver AMD driver has stopped reponding

    it's happen about 3/4 times a day how to stop this from happening? i only bought this pc 4 days ago

  • [SOLVED] I cannot make mounted ext4 partition writeable.

    I want to make /dev/sdc2 (mounted on /mnt/SteamLinux) writeable, so I could install Steam games on it. /etc/fstab # /etc/fstab: static file system information # <file system> <dir> <type> <options> <dump> <pass> # /dev/sdb3 UUID=7cfc361a-47e1-45b9-84

  • Using Webservices in the Self Service UI

    WHat is the best practice to show new fields in Self Service UI pages with out changing existing UI elements? We created new proxies for Siebel WSDL and want to show new fields in the UI. We don't want to create new view object and link with AM to sh

  • Increasing Microsoft Exchange Writer timeout

    Hello, I am hoping if someone could tell me if it is possible to increase the timeout on the Microsoft Exchange Writer? I recently started having problems with backups where the writer is timing out. And my transaction logs are not getting truncated

  • What is Router Address in Airport Extreme

    I am trying to configure Airport Extreme for Cable modem(Comcast). Please help me on what i need to fill in Router address field for 'using DHCP' option. Can I see the address in Airport extreme itself or is it is referring to any IP or something.