[JavaMail] : Decoding Problem

I tried to use JavaMail method getContent() to extract the content of email messages. However, I found that some Chinese words cannot be shown probably. How can I treat this problem. Thanks

There's a lot of things happening between getContent and displaying the message.
How do you know the problem isn't in the displaying part of your application?
JavaMail's job is to return you the correct Unicode characters. Converting those Unicode
characters into the correct fonts so that they can be displayed correctly happens elsewhere.
You need to find out whether you're getting the correct Unicode characters, without trying
to display them. That will let you know whether the problem is with JavaMail (in which case
the problem is almost always because the message was encoded incorrectly), or whether
the problem is in the displaying of the correct characters (in which case you'll need to post
your question to a different forum).

Similar Messages

  • Decoding-problems on subject

    Hello all,
    as far as I observed javamail does an automatic decoding of an eMail-subject for me. So a
    Subject: =?iso-8859-1?B?QW1hem9uLmRl?=
    automaticly becomes
    Subject: Amazon.de
    Now I get a message with the subject:
    Subject: openBC:=?UTF-8?Q?=20Ingo=20Gr=C3=BCneberg=20hat=20?= =?UTF-8?Q?Sie=20als=20Kontakt=20best?==?UTF-8?Q?=C3=A4tigt?=
    which will not be decoded by javamail. I tried to work around the problem and forced my application to decode the subject one more time - no result:
    System.out.println(MimeUtility.decodeText("openBC:=?UTF-8?Q?=20Ingo=20Gr=C3=BCneberg=20hat=20?= Sie als Kontakt best=?UTF-8?Q?=C3=A4tigt?="));
    -> openBC:=?UTF-8?Q?=20Ingo=20Gr=C3=BCneberg=20hat=20?= Sie als Kontakt best=?UTF-8?Q?=C3=A4tigt?=
    Then I thought the string would be the problem, but Thunderbird decodes the subject right!??
    Any sugestions? Thanks a lot in advance!
    Stephan
    Message was edited by:
    lotk

    First of all,i want to show you my code:
    package orlab.test;
    import java.io.File;
    import java.io.FileInputStream;
    import javax.mail.internet.MimeMessage;
    public class Program {
    * @param args
    * @throws Exception
    * @throws
    public static void main(String[] args) throws Exception {
    System.setProperty("mail.mime.decodetext.strict", "false");
    File dir = new File("c:/Mail");
    File[] files = dir.listFiles();
    for (int i = 0; i < files.length && i < 4; i++) {
    File f = files;
    if (!f.isFile()) {
    continue;
    FileInputStream fis = new FileInputStream(f);
    MimeMessage mm = new MimeMessage(null, fis);
    String rowHeader = mm.getHeader("Subject")[0];
    // System.out.println(MimeUtility.decodeText(mm.getSubject()));
    if (!rowHeader.equals(mm.getSubject())) {
    // continue;
    System.out.println("File\t\t:" + f.getName());
    System.out.println("Raw\t\t:" + rowHeader);
    System.out.println("Subject\t\t:" + mm.getSubject());
    fis.close();
    System.out.println("_______________");
    the raw mail data like this:
    _*Message-ID: <[email protected]>*_
    _*Date: Fri, 6 Jun 2008 19:06:47 +0900 (JST)*_
    _*Subject: SOME=?ISO-2022-JP?B?GyRCTU0wRjdvJUElJyVDJS8lNyE8JUgbKEI=?=*_
    this is the code which can decode "SOME=?ISO-2022-JP?B?GyRCTU0wRjdvJUElJyVDJS8lNyE8JUgbKEI=?=
    "to"SOME&#27096;&#26696;&#20214;&#12481;&#12455;&#12483;&#12463;&#12471;&#12540;&#12488;
    ", when i using gnu javamail.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Payload decoding problem

    Hi
    Im using 10.1.2.3 b2b with mlr#7. In edi 841 transaction im encoding a .jpeg(image) file in to base64 format and attaching it to the binary data section.The output raw edi data has the decoded jpeg file but it was corrupted.I donno how to get my original .jpeg(image) file.Same thing happens for .pdf format.Kindly help in resolving this issue.
    Regards
    venkat

    Hi Venkat,
    No there is no such rule and B2B will decode it in the same format.
    If you have applied MLR#7 successfully then it should work.
    Anyways, take the attachment content from the wiremessage and decod it using base 64 encoding manually and save it as a jpeg, and try to open. If then also you are not able to open then decode it twice and now save it as jpeg and try to open. I am asking this because prior to MLR#7 there was problem of attachments getting encoded twice.
    You may consider forwarding wire message and b2b log in debug mode to my id (in my profile).
    Regards,
    Anuj

  • JavaMail, ESMTP, problem with this server response: "+  stunnel"

    I need to send message through a STMP server I don't know much about. The server works fine, when using port 25. But I need to send mail through port 465. I've looked around the web, I've searched the forums, but found no solution.
    I've identified, that the server uses some kind of strange "secure" connection. I was told, that is uses SSL, but when I use SMTPSSLTransport, it says the "Unrecognized SSL, plaintext connection?". So I am using the common Transport. This is my code:
                props.put("mail.transport.protocol","smtps");
                props.put("mail.smtp.host", smtpHost);
                props.put("mail.smtp.port", 465);           
                props.put("mail.smtps.starttls.enable","true");
                props.put("mail.smtps.ssl", "true");
                props.put("mail.smtps.socketFactory.port", 465);
                props.put("mail.smtps.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
                Session session = Session.getDefaultInstance(props);
                session.setDebug(true);
                Transport transport = session.getTransport();
    ...I am getting this output:
    DEBUG: setDebug: JavaMail version 1.4.1
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "host name of the server", port 465, isSSL false
    220 "host name of the server" ESMTP Sendmail 8.13.1/8.13.1; Fri, 15 Feb 2008 18:10:49 +0100
    + stunnelDEBUG SMTP: connected to host "host name of the server", port: 465
    EHLO "my hostname"
    DEBUG SMTP: bad server response:  + stunnel
    HELO "my hostname"
    250-"my hostname"
    WelcomeDEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    250 STARTTLS
    220 Go ahead
    RCPT TO:<[email protected]>
    DEBUG SMTP: got response code 220, with response: 220 Go ahead
    RSET
    DEBUG SMTP: exception reading response: java.net.SocketException: Connection reset
    javax.mail.MessagingException: Exception reading response;
      nested exception is:
            java.net.SocketException: Connection resetI have no idea, what a stunnel is, but it is causing the problem, I think.
    Does anybody have any ideas what can be wrong? Or does anyone know how to check the server setting? Or what properties can I try to set? (I've tried all possible options of the properties I am already setting in the code).

    You're getting newline (LF without the CR)? If so,
    it's possible that Thunderbird isn't seeing that as
    an end of line and so considers the "+stunnel" to
    be part of the greeting line.
    Either way, there's something messed up in the
    server configuration and you really need to report
    that to the server administrator.
    Also, port 465 is supposed to be an SSL port,
    starting in SSL mode, not starting in plain text
    mode as you're seeing. Again, this is evidence
    that the server is set up incorrectly.
    JavaMail will support STARTTLS just fine, and it
    won't care what port you're using, but that bogus
    "+stunnel" line is a protocol violation that's
    confusing it. Possibly Thunderbird is taking the
    approach of "throw away garbage until I see
    something I recognize", but JavaMail isn't working
    that way.
    If this was a server on the public internet that
    lots of people might encounter, I might be inclined
    to add a workaround to JavaMail. But since this is
    a private server that's clearly configured incorrectly
    and is clearly violating the protocol, I think the best
    thing to do is to get the server fixed.

  • JavaMail Installation Problem-Further Help Required

    Hi everyone, I am trying to install and configure JavaMail API and java activation framework so that I may start to try and write a Java Mail application, the problem I am having is that I am unable to get the sample program to work, I am compiling the sample program msgsend.java but I keep getting the following errors (I am using Jbuilder 2):
    Error (36): cannot access directory javax\mail.
    Error (37): cannot access directory javax\mail\internet.
    Error (209): class message not found in class msgsend.
    Error (210): class MessagingException not found in class msgsend
    Error (134): class Session not found in class msgsend
    Error (134): variable Session not found in class msgsend
    Error (139): class Message not found in class msgsend
    Error (139): class MimeMessage not found in class msgsend
    Error (141): class InternetAddress not found in class msgsend
    Error (145): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (146): Variable InternetAddress not found in class msgsend
    Error (148): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (149): Variable InternetAddress not found in class msgsend
    Error (151): cannot access class Message.RecipientType;neither class nor source found for Message.RecipientType.
    Error (152): Variable InternetAddress not found in class msgsend
    Error (162): Variable Transport not found in class msgsend
    Error (170): class Store not found in class msgsend
    Error (172): class URLName not found in class msgsend
    Error (172): class URLName not found in class msgsend
    Error (189): class Folder not found in class msgsend
    Error (195): Variable Folder not found in class msgsend
    Error (197): class Message not found in class msgsend
    Error (197): class Message not found in class msgsend
    I have installed JavaMail and java activation framework into the following directories on my hard dirive:
    JavaMail: C:\jdk1.3.1\lib\javamail-1.2
    java activation framework : C:\jdk1.3.1\lib\jaf-1.0.1
    My CLASSPATH is set to
    C:\jdk1.3.1\lib\javamail-1.2;C:\jdk1.3.1\lib\jaf-1.0.1
    I think that I have set this correctly, If not could somenone tell me what the CLASSPATH should be.
    If I have set it correctly, could anyone tell me another reason why I cannot run the sample programand tell me how I may be able to fix it.
    I have done a search on my computer for a file named javax\mail but it just says that javax is not a valid folder.
    Any help would be appreciated
    Thank You
    Noel

    >
    Noel, I have said it twice now... your classpath is
    supposed to be:
    C:\jdk1.3.1\lib\javamail-1.2\mail.jar;C:\jdk1.3.1\lib\j
    f-1.0.1\activation.jar
    /MichaelI have set the classpath to what you suggested but when I compile the msgsend.java sample I am still getting the same errors as before, the folder where javamail and JavaBeansTM Activation Framework are still in the same location also (C:\jdk1.3.1\lib\javamail-1.2 & C:\jdk1.3.1\lib\jaf-1.0.1).
    Can you tell me what is wrong?
    Thanks
    Noel

  • Decode problem

    Hi,
    I have a problem with a decode function.
    I try to execute this select:
    select (DECODE(:CU_IES, 'D', (DECODE(:P_FISC, 1, a.flag1, 0, a.flag2) in (2,3,4)), (DECODE(:P_FISC, 1, a.flag1, 0, a.flag2) in (2,3,4,6))))
    from flag a
    and a get this error ORA-00907: missing right parenthesis.
    I try to this in Report Builder 6.0.8.11.3.
    I want to do this: when :cu_ies is 'D' to bring me flags 2,3,4 and if not 'D' to bring me flags 2,3,4,6. (All flags are from 0 to 6)
    What I have done wrong?
    Anyone can help me?

    Try using case instead of decode
    SELECT SUM(CASE :p_fisc,
                 WHEN 1 THEN
                  nvl(a.val_int, 0) + nvl(a.val_mod, 0) + nvl(a.val_dep_int, 0)
                 WHEN 0 THEN
                  nvl(a.val_int_int, 0) + nvl(a.val_mod_int, 0) +
                  nvl(a.val_dep_int, 0) + nvl(a.prov_dez_val, 0)
               END) val_inv1,
           0 val_inv2,
           a.cod_cat
      FROM flag a, MJ M
    WHERE a.identif_a = M.identif_a
       AND (CASE :P_FISC WHEN 1 THEN a.flag1 WHEN 0 THEN a.flag2
            END IN (2, 3, 4) OR :cu_ies = 'D')
    GROUP BY a.cod_cat
    UNION ALL
    SELECT 0 val_inventar1,
           SUM(CASE :p_fisc
                 WHEN 1 THEN
                  nvl(a.val_int, 0) + nvl(a.val_mod, 0) + nvl(a.val_dep_int, 0),
                 WHEN 0 THEN
                  nvl(a.val_int_int, 0) + nvl(a.val_mod_int, 0) +
                  nvl(a.val_dep_int, 0) + nvl(a.prov_dez_val, 0
               END)) val_inv2,
           a.cod_cat
      FROM flag a, MJ M
    WHERE a.identif_a = M.identif_a
       AND (CASE :P_FISC WHEN 1 THEN a.flag1 WHEN 0 THEN a.flag2
            END = 5 OR :cu_ies = 'D')
    GROUP BY a.cod_catHTH
    SS

  • Hi javamail pop3 problem

    hello...
    i have a written code for retrieving mail from pop3 server...and its working fine except one problem....(if it is a problem)....
    when i retrieve mails i open outlook express and it again retrieves the same mails i have retirieved from my code....is this a normal behaviour as pop3 deletes all the retrieved messages....and when i first receive message using outlook my code is unable to find those messages .....so why this difference....should my code deliberately and explicitly delete messages after retrieving them or pop3 does it as its default behaviour....

    The emails on the POP3 server are not deleted from the server as they retrieved.
    In Outlook Express as well as in Outlook you can set the properties for your email account to leave a copy of the message on the server. The initial setting is to delete the message from the server as you retrieve it.
    In JavaMail in order to delete the email from the server you need to open the folder object for Read/Write, then to set the DELETED flag on the message to �true�;
    When you close the folder, deleted messages will be removed if you set the expunge parameter to �true�.
    As in the following code:
    Folder folder = store.getFolder("INBOX");
    folder.open(Folder.READ_WRITE);
    Message message = folder.getMessage(1);
    message.setFlag(Flags.Flag.DELETED, true);
    folder.close(true);

  • JavaMail Pop3 problems

    I am trying to read emails from a pop3 account. Even using the code provided by sun in the JavaMail examples directory, I can't seem to connect. I am getting this error:
    java.net.ConnectException: Connection refused: no further information
    at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:63)
    at javax.mail.Service.connect(Service.java:227)
    at msgshow.main(msgshow.java , Compiled Code)
    Can someone explain to me how to remedy this problem? Thank you in advance.
    Jimmy

    I have a similar problem . I want to extract the contents of the mail which is nothing but FORM ,with a set of KEY_VALUE pair to ACCESS.Can anybody help me with this issue?It is urgent!!!

  • Sorting: ORDER BY DECODE Problem on Pagination Query

    Hi,
    I've been searching around the easiest way to perform a dynamic "ORDER BY" clause and the "DECODE()" clause solution seem to be exactly what I am looking for. Unfortunately, It seems the DECODE function is not returning a correct column name value (I think it is returning NULL) since I'm receive the result set as if there was no ORDER BY clause.
    I need some help to get through this!
    Here the version with DECODE (not working)
    It is a Procedure with frstRow, nbRows and var_order as parameters
    The output returns the rows as if no ORDER BY was used
    SELECT c1, c2
    FROM
    SELECT ROWNUM rn, arv.*
    FROM A_AWA_AR arv
    WHERE ROWNUM < (frstRow + nbRows - 1) -- show only some rows determined by procedure
    ORDER BY DECODE(var_order, 1, c1, 2, c2, c1) -- sort by var_order
    WHERE rn BETWEEN frstRow AND (frstRow + nbRows)
    AND ROWNUM <= nbRows
    Here the version without DECODE (working)
    The output returns the rows as expected - ordered by c2 column
    SELECT c1, c2
    FROM
    SELECT ROWNUM rn, arv.*
    FROM A_AWA_AR arv
    WHERE ROWNUM < (frstRow + nbRows - 1) -- show only some rows determined by procedure
    ORDER BY c2 -- sort by var_order
    WHERE rn BETWEEN frstRow AND (frstRow + nbRows)
    AND ROWNUM <= nbRows
    -----

    Here are some results I've been getting... I will try the best I can to explain my problem.
    And by the way the table A_AWA_AR is a VIEW maybe this can help.
    My problem -- I think -- is that I don't understand how DECODE works. I should be a conditional IF-ELSE-THEN-like function but its behavior is not returning what I'm expecting.
    I need a solution where I will be able to sort the first lets say 10 rows using ROWNUM to tag row position (in sub-query) then the main query should only show the rows from 3rd postion to 7th position in the main query (as an example) with RN BETWEEN 3 AND 7. My solution does not work when I use decode but works when i pass the column name directly.
    Here is a simple query returning the values in the order they are found in the view:
    SELECT ROWNUM rn, ROW_ID, SR_NUM
    FROM A_AWA_AR
    WHERE ROWNUM < 10 Results:
    RN                                     ROW_ID          SR_NUM                                                         
    1                                      1-100876        1-60476802                                                     
    2                                      1-10087G        1-60476812                                                     
    3                                      1-10087Q        1-60476822                                                     
    4                                      1-10088A        1-60476842                                                     
    5                                      1-10088K        1-60476852                                                     
    6                                      1-10088U        1-60476862                                                     
    7                                      1-100894        1-60476872                                                     
    8                                      1-10089E        1-60476882                                                     
    9                                      1-10089O        1-60476892                                                      Now this is the query & result I would like to obtain (this is done pretty fast since it returns as soon as it reaches 9 sorted rows):
    SELECT ROWNUM rn, ROW_ID, SR_NUM
    FROM A_AWA_AR
    WHERE ROWNUM < 10
    ORDER BY SR_NUMResults:
    RN                                     ROW_ID          SR_NUM                                                         
    1                                      1-1RV9J7        1-107274499                                                    
    2                                      1-1RVXIF        1-107305575                                                    
    3                                      1-1SHY65        1-108332861                                                    
    4                                      1-22FOSR        1-125023563                                                    
    5                                      1-236F3X        1-126270717                                                    
    6                                      1-28P5EB        1-135542675                                                    
    7                                      1-29P2VY        1-137219038                                                    
    8                                      1-29ZNFH        1-137712221                                                    
    9                                      1-2BLWQR        1-140430339                                                     But with decode even a simple pseudo decode:
    SELECT ROWNUM rn, ROW_ID, SR_NUM
    FROM A_AWA_AR
    WHERE ROWNUM < 10
    ORDER BY DECODE(1,1,SR_NUM)Results:
    RN                                     ROW_ID          SR_NUM                                                         
    1                                      1-100876        1-60476802                                                     
    2                                      1-10087G        1-60476812                                                     
    3                                      1-10087Q        1-60476822                                                     
    4                                      1-10088A        1-60476842                                                     
    5                                      1-10088K        1-60476852                                                     
    6                                      1-10088U        1-60476862                                                     
    7                                      1-100894        1-60476872                                                     
    8                                      1-10089E        1-60476882                                                     
    9                                      1-10089O        1-60476892                                                      Here is the structure I'm trying to get and works when passing a column name:
    SELECT *
    FROM
        SELECT ROWNUM rn, ROW_ID, SR_NUM
        FROM A_AWA_AR
        WHERE ROWNUM < 10
        ORDER BY SR_NUM
    WHERE rn BETWEEN 3 AND 7Results:
    RN                                     ROW_ID          SR_NUM                                                         
    3                                      1-1SHY65        1-108332861                                                    
    4                                      1-22FOSR        1-125023563                                                    
    5                                      1-236F3X        1-126270717                                                    
    6                                      1-28P5EB        1-135542675                                                    
    7                                      1-29P2VY        1-137219038                                                     Now with decode (not working):
    SELECT *
    FROM
        SELECT ROWNUM rn, ROW_ID, SR_NUM
        FROM A_AWA_AR
        WHERE ROWNUM < 10
        ORDER BY DECODE(1,1,SR_NUM)
    WHERE rn BETWEEN 3 AND 7Results:
    RN                                     ROW_ID          SR_NUM                                                         
    3                                      1-10087Q        1-60476822                                                     
    4                                      1-10088A        1-60476842                                                     
    5                                      1-10088K        1-60476852                                                     
    6                                      1-10088U        1-60476862                                                     
    7                                      1-100894        1-60476872                                                      Thanks for the support!

  • Acrobat XI Decoder Problem

    An error says that Acrobat XI does not have a decoder for audio content.  The file is an MP3.  I have the latest Flash player installed.  Running Windows 8.  How do I fix?

    I would like to provide a sample, but I do not know how to do so from a proprietary disk that cost about $900.  Pat Willener's link seem to go to purchasing some cloud services.  I do not know of how I can provide you with a sample.  The problem is aggravating and did not occur with Windows 7 or the Reader version that I had before my prior computer bricked.  There has to be a way that you can work with me to fix this problem.  I would be happy to upload files if there was a clean and simple way to do so.  So far, I find this exercise to be a kluge and entirely unhelpful.  I took a screen shot of the error message and saved it in CS6 as a .psd.  You will not even let me upload that!  This is unhelpful.

  • Tomcat and JavaMail Sessions problem

    I'm using Tomcat (with struts). I've configured my web application in server.xml to manage JavaMail Sessions:
              <Resource name="mail/Session" auth="Container" type="javax.mail.Session"/>
              <ResourceParams name="mail/Session">
                   <parameter>
                        <name>mail.smtp.host</name>
                        <value>gandalf</value>
                   </parameter>
              </ResourceParams>
    Also, I've configured my web application deployment descriptor (web.xml) to use this resource:
    <resource-ref>
         <description>JavaMail Resource</description>
         <res-ref-name>mail/Session</res-ref-name>
         <res-type>javax.mail.Session</res-type>
         <res-auth>Container</res-auth>
    </resource-ref>
    Now in the Java code I try to get the JavaMail session in this way:
    private Context devuelveContexto() throws javax.naming.NamingException
    initContext = new InitialContext();
    return (Context) initContext.lookup("java:/comp/env");
    public javax.mail.Session devuelveSesionMail()
    throws javax.naming.NamingException
    Context envContext = devuelveContexto();
    javax.mail.Session mailSesion = (javax.mail.Session) envContext.lookup("mail/Session"); <--- this throws an exception
    I'm doing all like is explained in Tomcat help web page 'JNDI Resources HOW-TO' but it doesn' work for me.
    The exception raised is this:
    java.lang.reflect.InvocationTargetException: java.lang.ClassCastException: javax.mail.Session
         at com.aplicacionesweb.evaluaciones.ddbb.CargadorRecursos.devuelveSesionMail(CargadorRecursos.java:76)
         at com.aplicacionesweb.evaluaciones.fases.actions.ConcertacionAction.enviarCorreo(ConcertacionAction.java:562)
         at com.aplicacionesweb.evaluaciones.fases.actions.ConcertacionAction.grabarConcertacion(ConcertacionAction.java:510)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.struts.actions.DispatchAction.perform(DispatchAction.java:236)
         at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1787)
    Please help.

    Problem solved. I had 'mail.jar' and 'activation.jar' in 'WEB-INF/lib' directory, causing a classes conflict.

  • Creative T7700 and DTS-100 Decoder (PROBLEMS, PLEASE HELP)

    Hi
    I purchased a Creative T7700 Speaker system and DTS-100 Decoder the other week but so far have had no luck getting it to work. I use a Gigabyte GA-K8NS ULTRA motherboard which came with an audio combo kit that supports 7.1. I did everything the logical way, Connecting the black wire to black socket in speaker and red tabbed wire to the red socket in speaker, I then connected each speaker to the sockets at the back of subwoofer. Then I connected the audio cables (grey, blue, orange, black) from sub to the Decoder switch, then connected the other wires from switch to the audio jacks at the back of the PC(blue plug to blue socket, black plug to black socket, orange plug to orange socket), The I connected the hardwired plugs in decoder switch to the decoder. Finally, I plugged the mains power to the decoder and subwoofer but got no sound at all. I checked the 7.1 was set up on computer and it was.
    HAS ANYONE ANY IDEAS WHY I GET NO SOUND? :smileyindifferent:
    1. I know I have power cause the circular green light on volume and bass controller is on.
    2. I have the decoder set to analogue and tried 1,2 and 3.
    3. I have tried changing the decoder switch between decoder and PC.
    4. I checked I have the decoder and subwoofer set to 7.1
    5. I know it isnt a problem with computer or decoder because when I plug earphones into the green audio jack in either the PC or Decoder I get sound (Although I have the decoder switch set to "PC"meaning the decoder just sits there with its little green lights making no difference at all).
    PLEASE HELP WITH THIS PROBLEM.
    Thanks

    I also am having this issue. Where I have installed the software for the M and after doing so I plug it in and get the Driver installation that fails to find drivers. If I try to open the creative explorer or the firmware upgrade released yesterday both say no device attached.

  • PLS help: animate gif decoding problem

    i am making a gif animation decoders
    using http://www.fmsware.com/stuff/gif.html
    after i decoded the gif, i could only view the animation by ACD See, but cant view by web browser(it only show the last frame of the gif) !!
    Thanks all you guy ~~~

    It seems this animated gif decoder doesn't function properly. Perhaps, you may use Jimi (http://java.sun.com/products/jimi/) to decode animated gif image :
    Enumeration images=Jimi.createJimiReader(inputStream, Jimi.SYNCHRONOUS).getImageEnumeration();

  • Decode Problem in Oracle 8.1.6

    In our test database(Oracle 8.1.6), the SQL statement below does not give an "invalid number" error.
    select contact_id from news_contact
    Where 1 = decode(contact_id ,'pressoffice', 1,'k')
    and contact_id = 'pressoffice'
    However, when I ran this same SQL statement on our production database(Oracle 8.1.6), I get an "invalid number" error on the 'k' on the decode.

    BTW, I think that [ code ], [ code ] and similar tags, should be properly documented in this forums, and their usage should be mandatory. This seems to be a week point of the administrators of the Oracle forums. Also a forum-level promotion of decent code formating styles will make a difference.
    Taking an example at random from another thread, imagine that instead of having to read and understand queries like this:
    select COUNT(1) AS X1,x1.close_dt,x1.open_dt FROM W_SRVREQ_D X1,
    ( SELECT w_day_d.day_dt AS snapshot_date FROM (SELECT to_date(nvl(max(date_wid),'20030531'),'yyyymmdd')+1 AS snapshot_date FROM bt_fault_snapshot_f) f , w_day_d , (SELECT CASE WHEN to_number(to_char(sysdate,'hh24')) <18 THEN trunc(sysdate - 1) ELSE trunc(sysdate)
    END AS lastdate FROM dual) currdate WHERE w_day_d.day_dt >= f.snapshot_date AND w_day_d.day_dt <= currdate.lastdate) day WHERE X1.STATUS='CLOSED' group by x1.close_dt,x1.open_dt
    we will see only queries like that:
    SELECT COUNT(1) AS X1,
           x1.close_dt,
           x1.open_dt
      FROM W_SRVREQ_D X1,
          (SELECT w_day_d.day_dt AS snapshot_date
             FROM (SELECT to_date(nvl(max(date_wid),
                          '20030531'),
                          'yyyymmdd')+1 AS snapshot_date
                     FROM bt_fault_snapshot_f) f,
                          w_day_d,
                  (SELECT CASE
                          WHEN to_number(to_char(sysdate,'hh24')) < 18  
                          THEN trunc(sysdate - 1)
                          ELSE trunc(sysdate)
                          END AS lastdate
                     FROM dual) currdate
            WHERE w_day_d.day_dt >= f.snapshot_date
              AND w_day_d.day_dt <= currdate.lastdate) day
    WHERE X1.STATUS = 'CLOSED'
    GROUP BY x1.close_dt,
              x1.open_dt

  • Nikon Jpeg decoding problem.

    Jpeg files saved with the ICC profile "Nikon sRGB 4.0.0.3001" by Nikon PictureProject do not load properly using Java ImageIO.read(). The image is far too dark, but the colors are not swapped.
    This appears to be similar to the problems reported in bugid 6246622, which was fixed in 1.5_04 and is now closed.
    I tested this using Java version 1.5.0_06. The following code provides a workaround
        ImageInputStream iis = ImageIO.createImageInputStream(file);
        Iterator<ImageReader> iir = ImageIO.getImageReaders(iis);
        boolean looking = true;
        ImageReader reader = null;
        ImageReadParam param = null;
        while(looking && iir.hasNext()) {
            reader = iir.next();
            reader.setInput(iis);
            param = reader.getDefaultReadParam();
            Iterator it = reader.getImageTypes(0);
            while (looking && it.hasNext()) {
                ImageTypeSpecifier type = (ImageTypeSpecifier) it.next();
                ColorSpace cs = type.getColorModel().getColorSpace();
                if ( cs.isCS_sRGB() ) {
                    param.setDestinationType(type);
                    looking = false;
                if ( cs.getType() != ColorSpace.TYPE_RGB ) {
                    looking = false;
        if (reader != null) {
            img = reader.read(0, param);
        }Does anyone have a better workaround for this other than using Toolkit or Applet.
    I will file this as a bug report, but the Bug Database is not responding at present.

    Sun has assigned this a bug id
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6372769

Maybe you are looking for

  • Help me please with layers

    OK here is the deal I run a web site turboforums.org.  I am trying to create a banner for the site and I need to merge 2 photos.  I have a mac book pro and I am running PSE 8.  Here are the photos that I am trying to merge can you please do it and te

  • Use of EJB in a package application.

    Has anyone come across a packaged application/product (Like and ERP system, CRM product etc.) that was created using EJB as the "back-end" and then deployed as a "shrink-wrapped" application? I would like to hear some views on this from everyone.

  • IPad2 is stuck in FT login and will not shut down

    My iPad2 is stuck on the FT login prompt and will not allow me to cancel out.  As of now, I cannot shut down or do anything else with the iPad.  Any ideas of what I can try?

  • Error #1047 for constructor initializers

    Hi, it seems that there is a compiler error when trying to use static const in constructor initializer. Example is : import com.villefluide.fluideinfo.util.enums.OverlayType;     [Bindable]     [RemoteClass(alias="com.villefluide.fluideinfo.util.VFSt

  • Mail cannot send to any account!

    Snow Leopard has broken my long-term Mail system! I note that fairly recently I had problems with Mail (under 10.5) that meant it only did outgoing mail on one of two commonly-used servers. This was fixed by restoring an old (pre-problem) version of