Problem in displaying Array Position?

hi,
I am having a problem in displaying the array position of a sorted Array
for ex:
int[] a = {4,3,1,7}for sorting the array i am using Arrays.sort(a); then the output will be
a = {1,3,4,7}now according to this i need to display the array position of a before sorting like a should have the output {2,1,0,3} which should be the array position of the sorted array. Any help will be appreciated.
Thanks.

for (int i = 0 ; i < unsortedArray.length ; i++)
   for (int j = 0 ; j < sortedArray.length ; j++)
       if (unsortedArray[i] == sortedArray[j]) {
             System.out.println("position for element "+i+" is "+j);
             break;
       }notice that if you have duplicate values, the position of the duplicate will always be considered as the first occurence of this value

Similar Messages

  • Displaying Array Position not working in case of descending Order?

    Hi,
    I need to display the array position of the sorted array in Descending order. Here is my code.
         int[] in = {5,3,2,7};
              int[] newArr = new int[in.length];
              int[] na = new int[in.length];
              //copying into a new array
              for(int i=0;i<in.length;i++){               
                   newArr[i] = in;     
              // code for descending order
              for(int j=0;j<in.length;j++){
              Arrays.sort(in);
              na[j] = in[in.length-(1+j)];
              }the sorted array will be will be {7,5,3,2} now according to this i need to display the array position of the sorted array which should be {3,0,1,2} i tried to compare newArr[i] with na[j] but am not gettin the result that i should be getting the same comparison is working in case of Ascending Order but not descending. Any suggestions or help will be appreciated.
    Thanks and regards.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    hi,
    what you are doing is correct only, do not put sort method inside the for loop
    and postion is correct also
    int[] in = {5,3,2,7};
            int[] newArr = new int[in.length];
            int[] na = new int[in.length];
            //copying into a new array
            for(int i=0;i<in.length;i++){
                newArr[i] = in;
    Arrays.sort(in);
    // code for descending order
    for(int j=0;j<in.length;j++){
    na[j] = in[(in.length-1)-j];
    System.out.println("Val --> "+na[j]);
    System.out.println("Position --> "+j);

  • How to display array

    Hi, I have a problem to display array from my database. The following are the two files that I tried to input multiple values in mailaddress database in the second file and I tried to display the values from the database when the user login the first file. The values are recorded in the database well but I always got java.lang.NullPointerException error in my first file. I checked the code, it shows that array display wrong. Would you please help me? Thanks a lot in advance.
    <zhangmailinputtest.jsp>
    <%@ page language="java" contentType="text/html; charset=Shift_JIS" %>
    <%@ page import="beanYama.*,java.sql.*,java.util.*,java.text.*" %>
    <%@ include file="inc_conv_char.jsp" %>
    <%
    String uid =(String)session.getAttribute("uid");
    String unam =(String)session.getAttribute("unam");
    String depart =(String)session.getAttribute("depart");
    String perms =(String)session.getAttribute("perms");
    String flag =(String)session.getAttribute("flag");
    if(flag==null){
         response.sendRedirect("index.jsp");
    }else{
    %>
    <html>
    <body>
    <%!      String[] name;
         String[] departa;
         String[] email;
    %>
    <%
              Connection con = null;
              Statement stmt1 = null;
              ResultSet rsq = null;
              Class.forName("org.gjt.mm.mysql.Driver");
              con=DriverManager.getConnection("jdbc:mysql://localhost/progress?user=ntjs&password=ntjs&useUnicode=true&characterEncoding=Shift_JIS");
              stmt1=con.createStatement();
         rsq=stmt1.executeQuery("SELECT name AS name1 from mailaddress;");
              if(rsq.next()){
                   for (int i=0;i<name.length;i++) {
                   name[i] = rsq.getString("name1");
                   rsq.next();
              stmt1.close();
              con.close();     
    %>
    <form action="zhangmailtestfinal.jsp" method="post">
    <table width="60%" border="1" cellpadding="1" cellspacing="1" bordercolor="#000099">
    <tr>
    <td width="20%"><div align="center">Name</div></td>
    <td width="20%"><div align="center">Department</div></td>
    <td width="50%"><div align="center">Address</div></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" value="<%=name[0]%>" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    <tr>
    <td><input type="text" name="name" size="25" align="middle"></td>
    <td><input type="text" name="departa" size="25" align="middle"></td>
    <td><input type="text" name="email" size="53"align="middle"></td>
    </tr>
    </table>
    <input type="submit" name="save_button" value="Save">
    </body>
    </CENTER>
    </html>
    <%
    %>
    <zhangmailtestfinal.jsp>
    <%@ page language="java" contentType="text/html; charset=Shift_JIS" %>
    <%@ page import="beanYama.*,java.sql.*,java.util.*,java.text.*" %>
    <%@ include file="inc_conv_char.jsp" %>
    <%
    String uid =(String)session.getAttribute("uid");
    String unam =(String)session.getAttribute("unam");
    String depart =(String)session.getAttribute("depart");
    String perms =(String)session.getAttribute("perms");
    String flag =(String)session.getAttribute("flag");
    if(flag==null){
         response.sendRedirect("index.jsp");
    }else{
    %>
    <html>
    <body>
    <%!
         Connection con = null;
         PreparedStatement ps = null;
         ResultSet rs = null;
    %>
    <%
         String[] name = request.getParameterValues("name");
         String[] departa = request.getParameterValues("departa");
         String[] email = request.getParameterValues("email");
    try{          
              Class.forName("org.gjt.mm.mysql.Driver");
              con=DriverManager.getConnection("jdbc:mysql://localhost/progress?user=ntjs&password=ntjs&useUnicode=true&characterEncoding=Shift_JIS");
              Statement stmt0=con.createStatement();
              stmt0.executeUpdate("delete from mailaddress");
              String query ="INSERT INTO mailaddress (mail_userid,name,departa,email) VALUES (?,?,?,?)";
              ps = con.prepareStatement(query);
                   for (int i=0;i<name.length;i++){
                   ps.setString(1,uid);
                   ps.setString(2, name);
                   ps.setString(3, departa[i]);
                   ps.setString(4, email[i]);
                   ps.addBatch();
              ps.setString(4,uid);
              int[] results = ps.executeBatch();
              Statement stmt1=con.createStatement();
              ResultSet rsq=stmt1.executeQuery("SELECT name AS name1 from mailaddress where mail_userid=" + "'" + uid + "'" + ";");
              if(rsq.next()){
                   for (int i=0;i<name.length;i++) {
                   name[i] = rsq.getString("name1");
                   rsq.next();
    } catch (Exception e) {
                   throw new ServletException(e);
              } finally {
                   try {
                        if(rs != null) {
                             rs.close();
                             rs = null;
                        if(con != null) {
                             con.close();
                             con = null;
                   } catch (SQLException e) {}
    %>
    </html>
    <%
    %>

    Where exactly is the exception being generated?
    My guess is this bit here:
    if(rsq.next()){
      for (int i=0;i<name.length;i++) {
        name = rsq.getString("name1");
        rsq.next();
    }I don't think your name array has been initialised in this file. Plus it assumes that the name array has exactly the same number of items as the query returns. To me thats rather dubious...
    I would suggest this instead
    while (rsq.next()){
        name = rsq.getString("name");
    }I'm still not entirely certain what you are trying to accomplish, but thats probably the cause of the null pointer.
    good luck,
    evnafets

  • Problem: check random array with a static value

    My goal is to use the random number generator to put numbers into randomArray, then do a linear search to try to find if the number 5 has been generatated. Next print out where in the array the value can be found. I have no compile errors but I have a logical or syntax problem, any help would be great.
    public class test {
         int j;
         int target = 5;
         public static void main(String [] args) {
              int i;
              int[] randomArray = new int[20];
              for(i=0; i<randomArray.length; i++) {
                   randomArray[i] = (int)(Math.floor(Math.random() * (10.0 - 0.0)) + 0.0);
              test n = new test();
              n.display();
         public int arraySearch(int[] randomArray, int target) {
              for (j=0; j<randomArray.length; j++) {
                   if (randomArray[j] == target) {
                        return j;
              return -1;
         public void setArraySearch(int j) {
              j = j;
         int p;
         public void setArrayValues(int[] randomArray) {
              for (int k=0; k<randomArray.length; k++) {
                   p = randomArray[k];
         public void display() {
              System.out.println("Five is found in array position " + j);
              System.out.println(p);
    }

    Hi,
    That's correct. You need to call the other methods just as you call display, but you do also have some other minor problems. You have written some methods that aren't needed, and they do nothing. This might help you:
    public class test {
         public static void main(String [] args) {
              int i;
              int[] randomArray = new int[20];
              for(i=0; i<randomArray.length; i++) {
                   randomArray[i] = (int)(Math.floor(Math.random() * (10.0 - 0.0)) + 0.0);
              test n = new test();
              int indexFound = n.arraySearch(randomArray, 5);                
              n.display(indexFound );
         public int arraySearch(int[] randomArray, int target) {
              for (j=0; j<randomArray.length; j++) {
                   if (randomArray[j] == target) {
                        return j;
              return -1;
         public void display(int indexFound) {
              System.out.println("Five is found in array position " + indexFound);
    } /Kaj

  • Problem in displaying graph

    String[] xAxisLabels = {"1995", "1996", "1997", "1998", "1999", "2000", "2001", "2002", "2003", "2004"};
    double[][] data = new double[][]{{1500, 6880, 4510, 2600, -1200, -1580, 7000, 4555, 4000, 6120}};
    what is the diff between the above and below arrays
    String[] xAxisLabels = new String[20];
    String[] AxisLabels = new String[20];
    int i=1;
    double[][] data = new double[20][20];
    while(rs.next())
    AxisLabels= rs.getString(2);
    xAxisLabels[i]=AxisLabels[i].toString();
    data[0][i]=rs.getDouble(1);
    i++;
    i am getting problem in displaying image when i initialize directly the image is printing but when i am getting values from database and storing in the arrays the image is not displaying

    i need both graph and chart.
    graph to show plot after taking reading.
    chart to show the reading continousely.
    My problem is on both graph and chart,
    Graph showing x axis only from 0 to 1.    ( But i want o to 10 atleast)
    Chart showing some other value as shown in screen shot-1 ( But i want it start from 0,1,2,3... like that)
    (I found something by myself. When i change samples to read as 10 k and rate as 1k in usb 6009 daq, i am getting graph from 1 to 10.
    But chart is as like previous one - refer screen shot- 2; But chart is not updating properly in realtime. Is there any other method, to show graph between 0 to 10 without changing samples and rate.)
    In simple, my chart should show x axis starts from o . This is what i exactly want.
    ( This problem will come only when i connect labview with usb 6009 DAQ. If i use simulate signal option everything goes fine.
    I hope you will help me this time. Bcz i am trying this for last one week. But i cant find any solution till now
    Attachments:
    screen shot-1.jpg ‏118 KB
    screen shot-2.jpg ‏82 KB

  • Problem with displaying figures in words

    dear members....I've used the Julian Date trick to display the figures in words n it worked very well as far as figures were in positive numbers, but it wasted alot of time of me when it was displaying error while figure was in negative(below to zero)numbers, can any body tell me that how can I fix this problem in a way that it should display the whole value in words as it displays to positive figures but with a prefix of "Minus" in case of a negative number??? I've tried the condition like this
    IF :val > 0.....
    but not fruitful,
    plzzz tell me some solution,thanx,good bye.

    You can use this code and try your requirements.
    SQL> create or replace
    2 function spell_number( p_number in number )
    3 return varchar2
    4 -- original by Tom Kyte
    5 -- modified to include decimal places
    6 as
    7 type myArray is table of varchar2(255);
    8 l_str myArray := myArray( '',
    9 ' thousand ', ' million ',
    10 ' billion ', ' trillion ',
    11 ' quadrillion ', ' quintillion ',
    12 ' sextillion ', ' septillion ',
    13 ' octillion ', ' nonillion ',
    14 ' decillion ', ' undecillion ',
    15 ' duodecillion ' );
    16 l_num varchar2(50) default trunc( p_number );
    17 l_return varchar2(4000);
    18 begin
    19 for i in 1 .. l_str.count
    20 loop
    21 exit when l_num is null;
    22
    23 if ( substr(l_num, length(l_num)-2, 3) <> 0 )
    24 then
    25 l_return := to_char(
    26 to_date(
    27 substr(l_num, length(l_num)-2, 3),
    28 'J' ),
    29 'Jsp' ) || l_str(i) || l_return;
    30 end if;
    31 l_num := substr( l_num, 1, length(l_num)-3 );
    32 end loop;
    33
    34 -- beginning of section added to include decimal places:
    35 if to_char( p_number ) like '%.%'
    36 then
    37 l_num := substr( p_number, instr( p_number, '.' )+1 );
    38 if l_num > 0
    39 then
    40 l_return := l_return || ' point';
    41 for i in 1 .. length (l_num)
    42 loop
    43 exit when l_num is null;
    44 if substr( l_num, 1, 1 ) = '0'
    45 then
    46 l_return := l_return || ' zero';
    47 else
    48 l_return := l_return
    49 || ' '
    50 || to_char(
    51 to_date(
    52 substr( l_num, 1, 1),
    53 'j' ),
    54 'jsp' );
    55 end if;
    56 l_num := substr( l_num, 2 );
    57 end loop;
    58 end if;
    59 end if;
    60 -- end of section added to include decimal places
    61
    62 return l_return;
    63 end spell_number;
    64 /

  • MMM1061: Corrupted array: position mismatch at 0

    Hello
    We got severes errors on Parent Mappings with Pluggable Mappings inside. We can Analyze and Deploy the Parent Mappings without any error, but we get errors on syncrhonizing the Parent Mappings.
    1. Error on Synchronize a Parent Mapping (Pluggable Mappings inside)
    Msg Box:
    MMM1061: Corrupted array: position mismatch at 0.
    MMM1061: Corrupted array: position mismatch at 0.
    2. Error on closing the previously syncrhonized Parent Mapping
    Msg Box:
    INTERNAL ERROR: in MapGenerationLanguageValidator.validate(GENERATION_LANGUAGE, PLSQL)
    3. Error on opening this or any other mapping:
    Msg Box:
    Repository Usage Error: Start nested transaction while already in one. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    All 3 msg boxes have a Detail button with a lot of Java function calls (too much to post it here).
    What we tried so far (but all didn't help so far)
    - Copy existing Pluggable Mapping and use this one in existing Parent Mapping
    - Removing Pluggable Mapping from Parent Mapping and the include it again
    - Recreating Pluggable Mapping from scratch and include it in Parent Mapping
    - Rebuidling new Pluggable Mapping from scratch and also new Parent Mapping, using the newly created Pluggable Mapping
    - Making sure all developers accessing the OWB Repository have the same language settings (English)
    The only thing that helped so far was creating a dummy Pluggable Mapping/Parent Mapping NOT using (including) any other existing objects from this Repository (like tables, etc.)
    The sync strategy (merge, update) has no influence whether we can sync successfully or not.
    My conclusion so far is:
    a) We have a severe internal Repository problem
    or
    b) This OWB version doesn't properly support Pluggable Mappings/Parent Mappings.
    Any1 already had the same problems? We are working with OWB Client 10.2.0.1.31 and Warehouse Builder Repository: 10.2.0.1.0
    Any hint are welcome
    Thank you

    Hi,
    I recommend using the latest OWB Patch 10.2.0.4. The first release of 10.2 was quite buggy concerning pluggable mappings. we did not use them in that version.
    Regards,
    Carsten.

  • Problem in displaying the TaxRate columns .

    Hi Experts,
                            I am having a problem in displaying the 'TaxRate', in this Query there are some different Taxrate's columns  like-  ' 'Basic Excise Duty BED@10 %',  ' Education ces@2% ' , 'Secondary Education Cess @1%',    etc.   only  4 -5  tax's value should display  at a  time  and rest of  the TaxRate's  columns whose value is NULL  should not display.
    So, I want to display only those TaxRate's  columns whose  value  is not NULL  and If there is  no value for any taxrate's column  in the data, then it should Display only 'Excempt' column.
    This is my query...
    SELECT DISTINCT OSTA.Code , ORPC.DocNum AS 'Debit Note No.', ORPC.CardName AS 'Name', ORPC.CardCode AS 'code', ORPC.NumAtCard AS 'Supplier Ref.'  ,
                          RPC1.Dscription AS 'Description of Goods', ORPC.Address, RPC1.Quantity, RPC1.Price AS 'Rate', RPC1.LineTotal AS 'Amount', ORPC.DocDate,
                              (SELECT DISTINCT TaxRate
                                FROM          RPC4
                                WHERE      (staType = - 90) AND (StaCode = 'BED@10') AND (DocEntry = RPC1.DocEntry)) AS 'Basic Excise Duty BED@10 %',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_8
                                WHERE      (staType = - 60) AND (DocEntry = RPC1.DocEntry)) AS 'Education Cess @2%',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_7
                                WHERE      (staType = - 55) AND (DocEntry = RPC1.DocEntry)) AS 'Secondary Education Cess @1%',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_6
                                WHERE      (staType = 4) AND (StaCode = 'CST2') AND (DocEntry = RPC1.DocEntry)) AS 'Central Sales Tax(CST)',
                             (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_5
                                WHERE      (staType = 1) AND (StaCode = 'VAT4') AND (DocEntry = RPC1.DocEntry)) AS 'Input VAT@5%',
                              (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_4
                                WHERE      (staType = 1) AND (TaxRate = 12.500000) AND (StaCode = 'VAT12.5') AND (DocEntry = RPC1.DocEntry)) AS 'VAT12.5%',
                           (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_3
                                WHERE      (staType = 18) AND (StaCode = 'Add2') AND (DocEntry = RPC1.DocEntry)) AS 'ADD Tax 1%',
                                  (SELECT DISTINCT TaxRate
                                FROM          RPC4 AS RPC4_2
                                WHERE      (staType = 7) AND (DocEntry = RPC1.DocEntry)) AS 'Excempt'
    FROM         OSTA INNER JOIN
                          RPC4 AS RPC4_1 ON OSTA.Code = RPC4_1.StaCode CROSS JOIN
                          ORPC INNER JOIN
                          RPC1 ON ORPC.DocEntry = RPC1.DocEntry
    WHERE     (OSTA.Code IN ('BED@10','eCess 2%','HeCess 1%','CST')) AND (ORPC.CardCode = 'V00308') AND (ORPC.DocNum = '9220004')
    Kindly help me to solve this problem
    Regards
    Rahul

    Hi rahul,
    Try this:
    SELECT DISTINCT T0.DocNum AS 'Debit Note No.', T0.CardName AS 'Name', T0.CardCode AS 'code', T0.NumAtCard AS 'Supplier Ref.'
         ,T1.Dscription AS 'Description of Goods', T0.Address, T1.Quantity, T1.Price AS 'Rate', T1.LineTotal AS 'Amount', T0.DocDate,
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0)FROM RPC4 WHERE RPC4.StaType = -90 AND RPC4.DocEntry = T0.DocEntry) AS 'Basic Excise Duty BED@10 %',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = -60 AND RPC4.DocEntry = T0.DocEntry) AS 'Education Cess @2%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = -55 AND RPC4.DocEntry = T0.DocEntry) AS 'Secondary Education Cess @1%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 4  AND RPC4.StaCode = 'CST2' AND RPC4.DocEntry = T0.DocEntry) AS 'Central Sales Tax(CST)',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 1  AND RPC4.StaCode = 'VAT4'AND RPC4.DocEntry = T0.DocEntry) AS 'Input VAT@5%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 1 AND RPC4.StaCode = 'VAT12.5'AND RPC4.DocEntry = T0.DocEntry) AS  'VAT12.5%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 18 AND RPC4.StaCode = 'Add2'AND RPC4.DocEntry = T0.DocEntry) AS   'ADD Tax 1%',
         (SELECT DISTINCT ISNULL (SUM(RPC4.TaxRate),0) FROM RPC4 WHERE RPC4.StaType = 7 AND RPC4.DocEntry = T0.DocEntry) AS  'Excempt'
    FROM ORPC T0
         INNER JOIN RPC1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE  (T0.CardCode = 'V00308') AND (T0.DocNum = '9220004')
    FOR BROWSE
    Thanks,
    Neetu

  • Problem with displaying BLOB images on JSP page using a servlet

    hi. I have a big problem with displaying BLOB images using JSP. I have a servlet that connects to the oracle database, gets a BLOB image , reads it, and then displays it using a BinaryStream. The problem is , this works only when i directly call that servlet, that is http://localhost:8080/ImageServlet. It doesn't work when i try to use that servlet to display my image on my JSP page (my JSP page displays only a broken-image icon ) I tried several coding approaches with my servlet (used both Blob and BLOB objects), and they work just fine as long as i display images explicitly using only the servlet.
    Here's what i use : ORACLE 10g XE , Eclipse 3.1.2, Tomcat 5.5.16 , JDK 1.5
    here is one of my image servlet's working versions (the essential part of it) :
                   BLOB blob=null;
              rset=st.executeQuery("SELECT * FROM IMAGES WHERE ID=1");
              while (rset.next())
                   blob=((OracleResultSet)rset).getBLOB(2);
              response.reset();
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition","filename=42.jpeg");
                    ServletOutputStream ostr=response.getOutputStream();
                   InputStream istr=blob.getBinaryStream(1L);
                    int size=blob.getBufferSize();
              int len=-1;
                    byte[] buff = new byte[size];
                         while ((len=istr.read( buff ))!=-1 ) {
                   ostr.write(buff,0,len);
             response.flushBuffer();
             ostr.close(); and my JSP page code :
    <img src="/ImageServlet" border="0"  > If you could just tell me what i'm doing wrong here , or if you could show me your own solutions to that problem , i would be very greatful ,cos i'm realy stuck here , and i'm rather pressed for time too. Hope someone can help.

    I turns out that it wasn't that big of a problem after all. All i had to do was to take the above code and place it into another JSP page instead of into a servlet like i did before. Then i just used that page as a source for my IMG tag in my first JSP. It works perfectly well. Why this doesn't work for servlets i still don't know, but it's not a problem form me anymore . Ofcourse if someone knows the answer , go ahead and write. I would still appriceatte it.
    here's the magic tag : <img src="ImageJSP.jsp" border="0"  > enjoy : )

  • Problem with display of JScrollPane

    I have made a small GUI.
    It has a JFrame and four JPanels are added to the frame.
    The placement is done by program and hence layout manager is set to null.
    Two of the panels contain JScrollPane.
    One scroll pane is associated with a JList.
    Another scroll pane is associated with a JTextArea.
    I am creating panel components in their respective paintComponent() method.
    Now my problem is whenever I run the code, the behaviour of the display of the GUI is erratic. Sometimes it appears perfectly fine other times the JList contents and JTextArea along with their scroll bars don't appear. I have tried running the code on different platforms and different systems. On some systems it works perfectly fine, on some it behaves erratically.
    Moreover my experience is that it is giving problem on somewhat lower configuration systems (low RAM and CPU) and running fine on higher configuration systems.
    I ran it on my laptop with 512MB RAM and centrino duo processor. (Both on windows and ubuntu it gave the same problem, random display behavior)
    I ran it on a desktop with 1GB RAM and higher processor (Both on windows and ubuntu it displayed fine)
    Does this problem relate to insufficient painting time or something of this sort? Why is this problem is coming and what's the solution?
    Thanks in advance.
    Also if anybody has encountered similar problem please do share so that I could at least say this is not a unique one.

    The placement is done by program and hence layout manager is set to null.That is (probably) your first problem. Learn to use use LayoutMangers, they save time in the long run.
    Sometimes it appears perfectly fine other times the JList contents and JTextArea along with their scroll bars don't appearProbably because preferred sizes are not set correctly. Since you are not using a layout manager that is your responsibility. Easy solution is to use a proper combination of layout managers.
    I am creating panel components in their respective paintComponent() method.That is (probably) your second problem. paintComponent() is for doing custom painting, not creating new components dynamically.
    I suggest you start by reading the Swing tutorial for example programs.

  • Problem with display of Buttons in ADF

    Hi All,
    I had a strange problem in display of the ADF Page in one of the server.I had two buttons inside ToolBars, The UI was coming fine in the two WLS, But when I deployed the application in third WLS, I was seeing that Buttons are coming in the top of screen,
    Kindly let me know as to why Iam not to replicate the issue in my earlier WLS.Please find my code
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <af:panelGroupLayout id="pgl1">
    <af:panelBox text="Service Request#: #{bindings.srNumber.inputValue}" id="pb1">
    <af:spacer width="10" height="10" id="s1"/>
    <af:outputText value="Service Request#: #{bindings.srNumber.inputValue}"
    id="ot18" inlineStyle="font-weight:bold;"
    rendered="false"/>
    <af:spacer width="15" height="10" id="s2"/>
    <af:separator id="s3" rendered="false"/>
    <af:panelFormLayout id="pfl1">
    <af:inputText value="#{bindings.subject.inputValue}" label="Summary"
    required="true" columns="100" maximumLength="100" id="it3" showRequired="true">
    <f:validator binding="#{bindings.subject.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.description.inputValue}"
    label="Description" required="true" columns="100"
    maximumLength="1999" id="it2"
    rows="7" showRequired="true">
    <f:validator binding="#{bindings.description.validator}"/>
    </af:inputText>
    </af:panelFormLayout>
    <af:separator id="s4" rendered="false"/>
    </af:panelBox>
    <af:toolbar id="tb1">
    <af:group id="g1">
    <af:commandButton text="#{pageFlowScope.MySRBean.reopenSrBackButtonLabel}" id="cb2"
    action="backtodetails" accessKey="G"
    immediate="true" inlineStyle="border-style:outset; border-width:medium; outline-color:Gray;"/>
    <af:commandButton text="#{pageFlowScope.MySRBean.reopenSrConfirmReopenButtonLabel}" id="cb3"
    action="success"
    actionListener="#{pageFlowScope.MySRBean.reOpenSR}"
    accessKey="C" inlineStyle="border-style:outset; border-width:medium; outline-color:Gray;"/>
    </af:group>
    </af:toolbar>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </jsp:root>
    thanks
    Krishnaveni

    User, please always tell us your jdev version.
    The interesting part is what you did not tell us.
    Kindly let me know as to why Iam not to replicate the issue in my earlier WLS.Please find my code means hte code has once run OK and now after you did some changes doesn't any longer. Querstion: what did you change, not oly to the code but to the environment.
    Timo

  • Problem with display driver

    Hello,
    Im using Photoshop CC and when it starts up it sometimes gives me this error message:
    'Problem with display driver and has temporary disabled enhancements which use graphics hardware.'
    What does this mean?
    Then it tells me to download the latstest software and gives me a link to an Adobe site that tells me nothing about a sollution.
    About my mac:
    MacBook Pro
    Intel Core i7
    2,2 GHz
    4 cores
    8 GB RAM
    AMD Radeon HD 6750M
    Thanks a bunch!

    Here you go:
    Adobe Photoshop Version: 14.2 (14.2 20131211.r.515 2013/12/11:23:00:00) x64
    Operating System: Mac OS 10.9.1
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2200 MHz
    Built-in memory: 4096 MB
    Free memory: 2266 MB
    Memory available to Photoshop: 3136 MB
    Memory used by Photoshop: 80 %
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    The GPU Sniffer crashed on 10/01/2014 at 09:05:58
    Display: 1
    Main Display
    Display Bounds: top=0, left=0, bottom=900, right=1440
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="2.1"
    gpu[0].MemoryMB=1024
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="AMD Radeon HD 6750M OpenGL Engine"
    gpu[0].RendererID=16915206
    gpu[0].Vendor="ATI Technologies Inc."
    gpu[0].VendorID=4098
    gpu[0].HasNPOTSupport=1
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.2 (Aug 24 2013 21:03:27)"
    gpu[0].CUDASupported=0
    gpu[0].OCLBandwidth=1.89051e+10
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.20"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number:
    Application folder: /Applications/Adobe Photoshop CC/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.8G, 107.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CC/Plug-Ins/
    Installed components:
       adbeape.framework   adbeape   3.4.0.29366   0.1160850
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.3.2.31983   79.546835
       adobe_caps.framework   adobe_caps   7.0.0.21   1.248010
       AdobeACE.framework   AdobeACE   2.20.02.31977   79.548223
       AdobeAGM.framework   AdobeAGM   4.30.29.31977   79.548223
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.03.31977   79.548223
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   79.548223
       AdobeCoolType.framework   AdobeCoolType   5.15.00.31977   79.548223
       AdobeCrashReporter.framework   AdobeCrashReporter   7.0.1  
       AdobeExtendScript.framework   AdobeExtendScript   4.5.5.31983   79.546835
       AdobeJP2K.framework   AdobeJP2K   1.2.2.31977   79.248139
       AdobeLinguistic.framework      19061  
       AdobeMPS.framework   AdobeMPS   5.8.1.31977   79.535029
       AdobeOwl.framework   AdobeOwl   5.0.24   79.547804
       AdobePDFL.framework   AdobePDFL   11.0.0.31977   79.508720
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   7.0.0.1786  
       AdobeScCore.framework   AdobeScCore   4.5.5.31983   79.546835
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   79.154911   79.154911
       AdobeXMPFiles.framework   AdobeXMPFiles   79.154911   79.154911
       AdobeXMPScript.framework   AdobeXMPScript   79.154911   79.154911
       ahclient.framework   ahclient   1.8.0.31  
       aif_core.framework   AdobeAIF   5.0.00   79.534508
       aif_ocl.framework   AdobeAIF   5.0.00   79.534508
       aif_ogl.framework   AdobeAIF   5.0.00   79.534508
       AlignmentLib.framework   xcode   Copyright © 2013 Adobe Systems Incorporated  
       amtlib.framework   amtlib   7.0.0.249  
       boost_date_time.framework   boost_date_time   7.0.0.0  
       boost_signals.framework   boost_signals   7.0.0.0  
       boost_system.framework   boost_system   7.0.0.0  
       boost_threads.framework   boost_threads   7.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.1.6.30929   151865
       CITThreading.framework   CITThreading   2.1.6.30929   151865
       dvaaudiodevice.framework   dvaaudiodevice   7.0.0.0  
       dvacore.framework   dvacore   7.0.0.0  
       dvamarshal.framework   dvamarshal   7.0.0.0  
       dvamediatypes.framework   dvamediatypes   7.0.0.0  
       dvaplayer.framework   dvaplayer   7.0.0.0  
       dvatransport.framework   dvatransport   7.0.0.0  
       dvaunittesting.framework   dvaunittesting   7.0.0.0  
       dynamiclink.framework   dynamiclink   7.0.0.0  
       FileInfo.framework   FileInfo   79.154511   79.154511
       filter_graph.framework   AdobeAIF   5.0.00   79.534508
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       LogSession.framework   LogSession   2.1.2.1785  
       mediacoreif.framework   mediacoreif   7.0.0.0  
       patchmatch.framework   patchmatch   1.2.00.31977   79.542390
       PlugPlugOwl.framework   PlugPlugOwl   4.2.0.36  
       UpdaterNotifications.framework   UpdaterNotifications   7.0.1.102   "7.0.1.102"
       WRServices.framework        
    Required plug-ins:
       3D Studio 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 14.2 x001  ©2002-2014 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 14.2 x001  ©1997-2014 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 14.2 x001  ©2001-2014 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 14.2, Copyright © 2001-2014 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Photoshop Touch CC (14.2.0.0) ©1993-2014 Adobe Systems Incorporated - from the file “PSDX.plugin”
       Picture Package Filter 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 14.2, Copyright © 1999-2014 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shake Reduction 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Shake Reduction.plugin”
       Shear 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE

  • I have a early 2011 Macbook pro 13 inch, I'm running Lion 10.7.4, and i want to upgrade to 10.8 Mountain Lion. Is it safe for my computer or are people experiencing problems with displays and Battery life?

    I have a early 2011 Macbook pro 13 inch, I'm running Lion 10.7.4, and i want to upgrade to 10.8 Mountain Lion. Is it safe for my computer or are people experiencing problems with displays and Battery life?
    Do Not post stuff about how Airplay doesnt work, because i dont have Apple TV and dont need to hear about it.

    If you have an external drive equal to or larger than your internal HD, clone your internal to it with either Carbon Copy Cloner or Super Duper. Test the clone to make sure it's bootable. Then upgrade either one. Try it out first.

  • Authorization problem when displaying icons in BW Report

    Hi All
    I have the following problem when display BW Report as iView: The report data itself is displayed perfectly but to display the icons (like DrillDown arrows, Hierarhy level open arrows) the Windows login message "Connect to <my BW server.com>:8000" appears and I have to enter BW user name and password explicitly. The system for BW is defined, the user is mapped, UIDPW method is used. Again, the report data itself is displayed, the problem is only with icons. I can see that the path to icons is like:
    http://<my BW server>.com:8000/sap/bw/Mime/BEx/Icons/s_b_up.gif
    How could I rid of this authorization request?

    Thanks! I already did this and it helped for most of icons. But for five remaining icons i still get authorization request althoug these icons are in the same path. The icons are:
    http://<server>.com/sap/bw/Mime/BEx/Icons/cascading.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/checked.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/separator.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/marked_right_35.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/loading.gif

  • Problem to display a negative number in XML Publisher output in excel

    Hi All,
    I am facing problem in displaying a negative number in XML Publisher output in excel.
    My requirement is that I have to display a negative number in brackets when the output is taken in excel format. Eg: If the value is -123 then i have to display it as (123).
    I have put these brackets using a formula column in the RDF, but it is the default functionality of excel that whenever there is a number in brackets then it automatically displays that as a negative value.
    Can anyone please help me how I can display this negative number within brackets and not as a negative digit. Is there any special tag or is there any formula which can be used to convert this into text and written in the Help text of RTF template.
    This is very urgent. If someone knows please reply asap.
    Regards,
    Shruti

    This is very urgent. If someone knows please reply asap.We are all volunteers here, so no ones questions are more urgent then other ones.
    If its that urgent it would have helped if you had chosen the correct forum to ask your question BI Publisher

Maybe you are looking for

  • HT1918 how can i change the country of my account while having a gift card balance?

    i have an account on the american store (which was originally in the canadian store) and i switched it because I bought my mac in america and i'm a student there and i got 100$ gift card to the american itunes store. i now have 0.34 cents left on the

  • DNS & routing on a new Solaris 10 installation

    Hello all. This will be my first time posting, so let me know if I breach ettiquette or something. I just installed my Ultra 10 with Solaris 10, and I love the look of the OS. However, I can't ping or connect to anything on the network with the serve

  • Systems Preferences gone.

    I hope someone can help me out. When I go to open my Systems Preferences under the apple icon nothing appears. I used the finder to try to locate it and nothing was found. Is there anything that I can do to bring it back? Thanks for any help. M

  • I open the case to solve grey startup screen - what could it be?

    Lately I've attempted to wake my powerbook after moving between home and work (generally by bike) and get no response. Cold reboot and subsequent attempts at startup result in a chime and grey screen with no apple. Booting from startup disk and looki

  • My brand new Mac book pro can not open some of the new pdf files, i have updated Acrobot reader

    Although i have downloaded the newest Acrobot reader my mac book pro can not read some of the pdf files it says Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to displ