File get currupt if downloaded by response.getOutputStream();

Hi,
I am trying to download file (of any type pdf/rar/any etc...) using following code,
but SOME TIME downloaded file is currupted.
            File file = new File(filePath);  
            if (file.exists()) {  
                if(isDebugEnabled)  
                    log.debug("File Found");  
            String quotes = "\"";    
            attachmentName =  quotes.concat(attachmentName).concat(quotes);  
            response.setContentType("application/unknown");  
            response.setHeader("Pragma", "public");  
            response.setHeader("Cache-Control", "max-age=0");  
            response.addHeader("Content-Disposition", "attachment; filename=" 
                    + attachmentName);  
            fileInputStream = new FileInputStream(file);  
            OutputStream tempStream = response.getOutputStream();  
            if (tempStream instanceof FileOutputStream && tempStream != null) {  
                destination = ((FileOutputStream) tempStream).getChannel();  
                source = new FileInputStream(file).getChannel();  
                destination.transferFrom(source, 0, source.size());  
            } else {  
                outputStream = tempStream;  
            int bytesRead;  
            while ((bytesRead = fileInputStream.read()) != -1){  
                outputStream.write(bytesRead);  
{code}
but when I use
{code}
       File f1=new File("MyFile");  
       OutputStream outputStream=new FileOutputStream(f1); 
{code}
insted of
{code}OutputStream tempStream = response.getOutputStream();  {code}   
It works, & download file by name "MyFile" in bin of tomcat folder.
but not work with response object.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

I did that in finally, here is the whole function code,
public static boolean downloadAttachment(HttpServletResponse response,
               String filePath, String attachmentName) throws Exception {
          boolean fileDownloadedStatus = false;
          FileInputStream fileInputStream = null;
          OutputStream outputStream = null;
          FileChannel source = null;
          FileChannel destination = null;
          try {
               File file = new File(filePath);
               if (file.exists()) {
                    if(isDebugEnabled)
                         log.debug("File Found");
               String quotes = "\""; 
               attachmentName =  quotes.concat(attachmentName).concat(quotes);
               response.setContentType("application/unknown");
               response.setHeader("Pragma", "public");
               response.setHeader("Cache-Control", "max-age=0");
               response.addHeader("Content-Disposition", "attachment; filename="
                         + attachmentName);
               fileInputStream = new FileInputStream(file);
               OutputStream tempStream = response.getOutputStream();
               if (tempStream instanceof FileOutputStream && tempStream != null) {
                    destination = ((FileOutputStream) tempStream).getChannel();
                    source = new FileInputStream(file).getChannel();
                    destination.transferFrom(source, 0, source.size());
               } else {
                    outputStream = tempStream;
               int bytesRead;
               while ((bytesRead = fileInputStream.read()) != -1){
                    outputStream.write(bytesRead);
               fileDownloadedStatus = true;
          } catch (FileNotFoundException fileNotFoundException) {
               log.error("FileNotFoundException");
               throw fileNotFoundException;
          } catch (Exception exception) {
               log.error("Exception");
               throw exception;
          } finally {
               if (source != null)
                    source.close();
               if (destination != null)
                    destination.close();
               if (fileInputStream != null)
                    fileInputStream.close();
               if (outputStream != null)
                    outputStream.close();
          return fileDownloadedStatus;
     }     {code}
I also checked with outputstream.flush, but not working.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Where will the files get stored when downloaded in private browsing

    I CANT FIND THE FILE WHICH I DOWNLOADED IN PRIVATE BROWSING...
    CAN ANYONE SOLVE THIS?

    It shouldn't make a difference whether you download in normal mode and in Private Browsing mode.
    The file should be in the location where you saved the file.
    Unfortunately you do not keep download history, so you can't check it that way.
    You can check the default download location or possibly try to download and save the file another time to see under what file name and in which folder the file will be saved.

  • Corrupted files in Audition Loopology download?

    I bought the disk version of Adobe Production Premium CS5.5, but the Audition Loopology Content is missing.  I successfully downloaded them from the Download Page, but many of the files seem to be corrupted, sounding like a badly tuned radio station.  Is this a problem on my end, or are the files getting corrupted during download? I downloaded the bad ones two or three times, same result. (Almost all of the Classical Orchestra files were this way, except for the Choir.)
    Thanks

    They're unzipping as .wav files, which normally play in the Mac
    applications.  Maybe some of the files are older, and were created in a
    different format?  Anyway, I tried your suggestion and exported one out of
    Audition as an .mp3 and .aif.  Both played fine in Spacebar Preview.  So, it
    appears that only the initial .wav translation present any problem.
    This may or may not be something worth correcting.  Maybe not, since Adobe
    Audition seems to have no problem with the files, and that's their original
    intent.  And, again, this may have something to do with Lion.  I've
    encountered another audio glitch associated with Lion, using Sorenson
    Squeeze.  Briefly, it won't translate a Quicktime Movie to .wmv unless it
    has an audio track, even if the video has no sound.
    So, this may be totally an Apple issue.
    Thanks again for your time.
    Tom Milner

  • Getting java.lang.IllegalStateException error with response.getOutputStream

    Hi,
    I am writer a JSP site for displaying JFreeChart. The main JSP page gets some parameters then the second page out put the chart as binary data with a Java class.
    I've located the part which generated the error, as follows:
    Code:
    OutputStream os = response.getOutputStream(); <--- this line cause the error
    response.setContentType("image/png");
    ChartUtilities.writeChartAsPNG(os, chart, 400, 300);
    (other than it, the JSP does nothing with response or out)
    Error:
    Servlet.service().for servlet jsp threw exception java.lang.IllegalStateException
    at org.apache.jasper.runtime.ServletResponseWrapperInclude.getOutputStream(ServletResponseWrapperInclude.java:62)
    at org.apache.jsp.build005f005.seriesChart_jsp.jspService(org.apache.jsp.build_005f005.seriesChart_jsp:110)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWarpper.java:325)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
    I've searched this forum and google and seeking for solution for thousands times. But sadly, ways such as adding out.reset(); doesn't work.
    Would any one has some suggestion for me? Your help is very appreciated. Thanks!

    A similar question / answers from jGuru.com
    Question I used getOutputStream() of response object in JSP. Below is the code for download a file in JSP.
    %>
    <%@ page import="java.util.*,
                        java.io.*"
    %>
    <%@ page language="java"
              session="false"
              contentType="text/html; charset=8859_1"
    %>
    <%
         //read the file name.
         File fFile = new File ("D:/Ibs/outdir/batchres.conf");
         String stFileName = "batchres.conf";
         //the content type set as excel
         response.setContentType ("application/excel");
         //the header and also the Nameis set by which user will be prompted to save
         response.setHeader ("Content-Disposition", "attachment;filename=\""+stFileName+"\"");
         //Open an input stream to the file and post the file contents thru the
         //servlet output stream to the client m/c
         InputStream isStream = null;
         ServletOutputStream sosStream = null;
         try
              //response.flushBuffer();
              isStream = new FileInputStream(fFile);
              sosStream = response.getOutputStream();
              int ibit = 256;
              while ((ibit) >= 0)
              ibit = isStream.read();
              sosStream.write(ibit);
         catch (IOException ioeException)
    sosStream.flush();
    sosStream.close();
    isStream.close();
    %>
    If run this code in Tomcat i am getting following error.. �<h1>Error: 500</h1> <h2>Location: /imu/jsp/ibUTLCmnDownloadView.jsp</h2>Internal Servlet Error:
    java.lang.IllegalStateException: getOutputStream() has already been called
         at org.apache.tomcat.facade.HttpServletResponseFacade.getWriter(Unknown Source)
         at org.apache.jasper.runtime.JspWriterImpl.initOut(Unknown Source)
         at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(Unknown Source)
         at jsp.ibUTLCmnDownloadView_12._jspService(ibUTLCmnDownloadView_12.java, Compiled Code)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.doForward(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.forward(Unknown Source)
         at JP.co.Hitachi.soft.IBS.Common.Servlet.ibUTLCmnDownloadScrGenServlet.doPost(ibUTLCmnDownloadScrGenServlet.java:75)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.core.ContextManager.internalService(Unknown Source)
         at org.apache.tomcat.core.ContextManager.service(Unknown Source)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Unknown Source)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(Unknown Source)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:479)
    Answer
    Don't know if this will help--your code worked as is on my system (J2SDK 1.4.1, Tomcat 4.1.12, Linux)--but you're setting the content-type twice, and to two different values. In the page directive, you specify contentType="text/html; charset=8859_1", and then in the scriptlet, you do a response.setContentType ("application/excel");. Try changing the one in the page directive and deleting the one in the scriptlet. The servlet container may be calling getOutputStream() when it sees the text MIME type so it can prepare the out built-in variable.
    Also, according to the J2EE design patterns, JSP's should only be used to produce text output. Any binary output (such as Excel files) should be produced with servlets--otherwise, the JSP becomes one big scriptlet (like this one).
    If you still want to do this with a JSP, you might want to take out your try ... catch block since you're not doing anything with it. Doing so will allow you to let the servlet container handle the errors (i.e. specify error pages in the web application deployment descriptor). Either that, or at least put the close() and flush()calls in it since they can throw IOExceptions, too. :)
    Finally, you should never close the servlet's output stream. Leave that up to the servlet container.
    Is this item helpful? yes no Previous votes Yes: 2 No: 3
    To transfer file from client to server using jsp programs
    chalpati Rao, Aug 11, 2004 [replies:1]
    How to Download File using JSP program
    Re: To transfer file from client to server using jsp programs
    Saravanan Mani, Aug 24, 2004
    Try restarting the server.It worked for me (ie.you did all the code changes mentioned in the previous reply)
    Breakline problems
    David Machado, Jan 27, 2005 [replies:1]
    Hi! Maybe a problem with breaklines. Try this: ------------------------------------------------------
    %><%@ // don't send breakline here!!!
    page import="java.util.*,
    java.io.*"
    %><%@ // don't send breakline here too!!!
    page language="java"
    session="false"
    contentType="text/html; charset=8859_1"
    %><% // finally, don't send breakline here!!!
    //read the file name.
    File fFile = new File ("D:/Ibs/outdir/batchres.conf");
    String stFileName = "batchres.conf";
    //the content type set as excel
    response.setContentType ("application/excel"); // twice???
    //the header and also the Nameis set by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=\""+stFileName+"\"");
    //Open an input stream to the file and post the file contents thru the
    //servlet output stream to the client m/c
    InputStream isStream = null;
    ServletOutputStream sosStream = null;
    try
    //response.flushBuffer();
    isStream = new FileInputStream(fFile);
    sosStream = response.getOutputStream();
    int ibit = 256;
    while ((ibit) >= 0)
    ibit = isStream.read();
    sosStream.write(ibit);
    catch (IOException ioeException)
    sosStream.flush();
    sosStream.close();
    isStream.close();
    %> // make sure that's no breakline an no spaces at the end!!
    Re: Breakline problems
    Aarthi Sivaram, Apr 19, 2005
    In the above code sosStream = response.getOutputStream(); must be removed. Use 'out' instead of sosStream i.e. out.write(""+ibit); If you look at the Java code generated for your JSP, you can find JspWriter out = null ... .. JspWriter calls response.getOutputStream(), thats why when u call getOutputStream, u get IllegalStateException. 'out' variable is available for direct use in all JSP's, like 'request'. So that can be directly used to write.
    A quick and working workaround
    Leslie Leng, May 20, 2005 [replies:1]
    I am not going to discuss the theory behind, as others gurus mentioned before me, are valid.
    In short, getOutputStream() could not be used more than once, and also it will conflict with JSPWriter's out.
    So, the quick workaround would be, at the end of the JSP page, add the following:
    out.clear();
    out = pageContext.pushBody();
    in example:
    catch(Exception e){
    System.out.print(e);
    out.clear();
    out = pageContext.pushBody();
    %>
    Re: A quick and working workaround
    ajit Pandey, Jul 15, 2005
    Thanks a ton Leslie ,it worked(Production issue) :) credit goes to you....indebted

  • Currently Have Photoshop CS3 & Adobe Bridge CS3 2.1.1.9. According to Adobe, Camera Raw 4.6 supports Nikon D810 NEF files.  I have downloaded Camera Raw 4.6 Update. When I try to open Nikon D810 NEF files, I get photoshop error that says "cannot complete

    Currently Have Photoshop CS3 & Adobe Bridge CS3 2.1.1.9.
    According to Adobe, Camera Raw 4.6 supports Nikon D810 NEF files.  I have downloaded Camera Raw 4.6 Update. When
    I try to open Nikon D810 NEF files, I get photoshop error that says
    "cannot complete request your because it is not the right kind of
    document. These NEF files wont open in Bridge at all.  What am I doing wrong?

    Camera Raw plug-in | Supported cameras

  • I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless i select the list in the sub file. How do I get backto the old method of seeing and using iTunes??

    I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless I select the list in the sub file. How do I get back to the old method of seeing and using iTunes??

    I can tell you that this is some of the absolutely worst customer service I have ever dealt with. I found out from a store employee that when they are really busy with calls, they have third party companies taking overflow calls. One of those companies is Xerox. What can a Xerox call center rep possibly be able to authorize on a Verizon account?  I'm Sure there is a ton of misinformation out there due to this. They don't note the accounts properly or so everyone can see them. I have been transferred before and have asked if they work for Verizon or a third party also and was refused an answer so, apparently they aren't required to disclose that information. I spent a long time in the store on my last visit and it's not just customers that get the runaround. It happens to the store employees as well and it's beyond frustrating.

  • When I try to download itunes I get the error message "ITunes.Setup_exe file could not be downloaded  Please help

    I had ITunes installed  up n running last November.  Few weeks ago I started getting error messages and said to reinstall ITunes to fix the problem.  So I went to control panel and deleted all Apple related programs, quick time n Itunes and reinstalled them  But I cannot down load Itunes I get another error message saying  ITunes.Setup_exe.  This file couldn't be downloaded.   I have been trying for weeks now and I am desperated   Please help me

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • How to get Header in Downloaded .xls file using  GUI_Download function

    How to get Header in Downloaded .xls file using  GUI_Download function ???
    How to use the the Header parameter available in GUI_Download function .

    HI,
    see this sample code..
    data : Begin of t_header occurs 0,
           name(30) type c,
           end of t_header.
    data : Begin of itab occurs 0,
           fld1 type char10,
           fld2 type char10,
           fld3 type char10,
           end   of itab.
    DATA: v_pass_path TYPE string.
    append itab.
    itab-fld1 = 'Hi'.
    itab-fld2 = 'hello'.
    itab-fld3 = 'welcome'.
    append itab.
    append itab.
    append itab.
    append itab.
    append itab.
    t_header-name = 'Field1'.
    append t_header.
    t_header-name = 'Field2'.
    append t_header.
    t_header-name = 'Field3'.
    append t_header.
      CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'
        EXPORTING
          default_extension     = 'XLS'
        IMPORTING
          fullpath              = v_pass_path.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                        = v_pass_path
          filetype                        = 'DBF'
        TABLES
          data_tab                        = itab
          FIELDNAMES                      = t_header
    Cheers,
    jose.

  • After reinstalling CS6 the bridge photo downloader isn't able to read raw files and fails to convert the raw files to DNG. Previously downloaded raw files, now DNG, open up successfully in Camera Raw 7. How do I get the photo downloader to read and conver

    After reinstalling CS6 the bridge photo downloader isn't able to read raw files and fails to convert the raw files to DNG. Previously downloaded raw files, now DNG, open up successfully in Camera Raw 7. How do I get the photo downloader to read and convert raw files. MacBook Pro with Snow Leopard. No such problem before this reinstallation.

    You should install Camera Raw 4.6.
    Visit this page and follow the instructions carefully:
    PC:    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4040
    Mac:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=4039
    -Noel

  • I have recently started downloading video files. I have downloaded a season of a tv show. The season had 9 episodes. Three downloaded fine and the other 6 will not. When i try to download them i get a message saying error -34 The disk you are attempting t

    I have recently started downloading video files. I
    have downloaded a season of a tv show. The season had
    9 episodes. Three downloaded fine and the other 6
    will not. When i try to download them i get a message
    saying error
    -34 The disk you are attempting to use is full.
    Remove files and empty recycle bin to create space. I
    dont understand why it keeps doing this. I have lots
    of space on itunes and my computer is not full
    either.What can i do? How can i prevent this? Is
    there a problem with my computer?  Thank you!

    have a look at this support article.

  • Download ascii file procedure -problem as its getting binary after download

    Hi ,
    I have create a application that will download a file from a customised blob table by calling the procedure below which is as per oracle documentation:
    CREATE OR REPLACE PROCEDURE download_my_file(p_file IN NUMBER) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(400);
    Lob_loc BLOB;
    BEGIN
    SELECT b.MIME_TYPE, a.file_content, a.file_name,A.file_size
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM PCD_PROCESS_TBL a,PCD_CNTL_TBL b
    WHERE a.seq_no =p_file AND ROWNUM<2;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( NVL(v_mime,'text/plain'), FALSE,'ISO-8859-4' );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="'||SUBSTR(v_file_name,INSTR(v_file_name,'/')+1)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    END download_my_file;
    The problem is that when our process updating the blob table with .dat file from Unix the data getting inserted fine.The file is basically a ascii file. But after downloading this by mime 'text/plain' or 'application/octet' i can see its getting as a binary file and it is not carriage return by a new line.A space like character getting inserted inside each line .
    can anybody please help out of that how can we get rid of this.
    I even change the blob to clob but still the problem persists even for clob the procedure not getting called.
    Thanks in advance,
    Deba

    Sounds like the problem you're having is the mismatch between the Unix text file format and the Windows text file format.
    Specifically, Unix uses LF (line feed) to denote the end of a line, while Windows uses CRLF (two characters, carriage return and line feed).
    If you open the file in Wordpad, you should see it ok.

  • How to get path of downloaded file?

    Hi,
    I use JDeveloper 11g with ADF.
    I have to download file with original date. If i want to save date i have to zip file. After that to unzip. My queation is: when clien download file how to get path of downloaded file????
    Because, i want to save unziped file on location where client want to download.

    Hi,
    you cannot download a file directly to a client. If this is a requirement then you need a signed Java Applet to handle the download. Otherwise a download dialog is opened for the user to define where to store the file.
    Frank

  • I purchased a song that is a corrupted file and won't download - how do i get that song or get a refund as i already have been charged

    i purchased a song thats a corrupted file and won't download - how do i get this song or get a refund as i have already benn charged ?

    http://support.apple.com/kb/HT1933
    Regards.

  • TS3212 After Clicking on iTunes Download i just see the note that Thank you for downloading , However i do not see any files getting downloaded.

    After Clicking on iTunes Download i just see the note that Thank you for downloading , However i do not see any files getting downloaded....

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    -Griff W.

  • Why do some downloaded files get "generic" file names?

    Sometimes when I click on a link to download a file the file ends up on my computer with a name corresponding to part of the URL that I clicked on. It only happens when the link doesn't point to a file name but instead calls a serverside process and passes the name/ID of the file to be downloaded. For example, a URL that looked like this:
    http://www.servernamegoeshere.com/digitalAsset/?id=123456 (example - not a working link)
    results in a file named "digitalAsset" on my desktop. I'm sure the issue has something to do with how the file is being sent by the server (HTTP header or MIME info) but I'd like to figure out exactly why that happens so that I can point the server owner in the right direction so that it gets corrected (unless it's a Safari bug). The same ULR works as anticipated in FireFox 2.0.
    Other similar links on the same site that point to PDF files get handled properly (displayed by Safari). The links that don't behave correctly point to Word files.
    Any ideas why this happens?
    MacBook Pro   Mac OS X (10.4.8)  

    Hey there,
    Try this:
    Highlight the tracks in iTunes (hold down the control button to highlight multiple tracks at once) and right-click on them and choose Get Info from the menu. From there, head over to the Options tab. Towards the middle of the window should be a drop down menu for Media type. Choose either audiobook or music, depending on which way you want to organize them. Then hit OK to apply the changes.
    See if that helps.
    B-rock

Maybe you are looking for

  • My phone has been exposed to water. If I do not have any insurance then how much can repair cost or replace the phone?

    I have dropped my phone into a sink full of water. Right away, I grabbed the phone and did my best to dry it off. Once dried, my speakers seem to have given up and only a faint noise would occur when a call or text would appear. Lastly, my phone had

  • Please, help with AS2 / CS3

    In this zip file, I replaced the images, with blank photos, with the image titles, to make it easier to see the problem. (download files) http://www.pbsjbuzz.tv/site_flash/site_flash.zip (view online) http://www.pbsjbuzz.tv/site_flash Thank you ! Hel

  • Problem  by using EXCELL button to export query results

    PLS try to assist me. By using this SAP  option I got a message saying : "The following template is missing  - SAP-SM.XLS" (see the attached file) Our basis people fixed the problem in the development environment The are very responsible people - and

  • How to Unload Classes?

    i have created custom classloader. now i want to unload classes those are loaded by custom classloader. i know that the classes will be unloaded when its classloader is unloaded. so i want to know how to unload cusotm classloader. In ClassLoader clas

  • IDVD not encoding my movie help!?

    I want to make a DVD with iDVD but my .mp4 movie is too large. The notice says that "Your project exceeds the maximum content duration. To burn your DVD, change the encoder setting in the Project Info window." so i changed to encoder setting from "Be