Big Big Funky Question

Hey people,
This might be a stupid question but I'm just wondering what variables in java are initialized to if they are even initialized. Are they initialized and to what? The data types I'm talking about are int,boolean,String,byte,char which are the ones I deal with most.

Variables don't have default values. Fields do.I thought I held the "Pedant of the Day"? award,
but I see that I've been usurped... ;o)We must revoke the archivist's award.
"[JLS section]4.5.3 Kinds of Variables
There are seven kinds of variables:
1. A class variable is a field declared using the keyword static within a class declaration (�8.3.1.1), or with or without the keyword static within an interface declaration (�9.3). A class variable is created when its class or interface is prepared (�12.3.2) and is initialized to a default value (�4.5.5). The class variable effectively ceases to exist when its class or interface is unloaded (�12.7).
2. An instance variable is a field declared within a class declaration without using the keyword static (�8.3.1.1). If a class T has a field a that is an instance variable, then a new instance variable a is created and initialized to a default value (�4.5.5) as part of each newly created object of class T or of any class that is a subclass of T (�8.1.3). The instance variable effectively ceases to exist when the object of which it is a field is no longer referenced, after any necessary finalization of the object (�12.6) has been completed.
3. Array components are unnamed variables that are created and initialized to default values (�4.5.5) whenever a new object that is an array is created (�15.10). The array components effectively cease to exist when the array is no longer referenced. See �10 for a description of arrays.
4. Method parameters (�8.4.1) name argument values passed to a method. For every parameter declared in a method declaration, a new parameter variable is created each time that method is invoked (�15.12). The new variable is initialized with the corresponding argument value from the method invocation. The method parameter effectively ceases to exist when the execution of the body of the method is complete.
5. Constructor parameters (�8.8.1) name argument values passed to a constructor. For every parameter declared in a constructor declaration, a new parameter variable is created each time a class instance creation expression (�15.9) or explicit constructor invocation (�8.8.5) invokes that constructor. The new variable is initialized with the corresponding argument value from the creation expression or constructor invocation. The constructor parameter effectively ceases to exist when the execution of the body of the constructor is complete.
6. An exception-handler parameter is created each time an exception is caught by a catch clause of a try statement (�14.19). The new variable is initialized with the actual object associated with the exception (�11.3, �14.17). The exception-handler parameter effectively ceases to exist when execution of the block associated with the catch clause is complete.
7. Local variables are declared by local variable declaration statements (�14.4). Whenever the flow of control enters a block (�14.2) or for statement (�14.13), a new variable is created for each local variable declared in a local variable declaration statement immediately contained within that block or for statement. A local variable declaration statement may contain an expression which initializes the variable. The local variable with an initializing expression is not initialized, however, until the local variable declaration statement that declares it is executed. (The rules of definite assignment (�16) prevent the value of a local variable from being used before it has been initialized or otherwise assigned a value.) The local variable effectively ceases to exist when the execution of the block or for statement is complete."

Similar Messages

  • Lacie 2 Big: a question about formatting-.

    No sniggering at the back: RAID and related subjects is not my forte. I actually own a large, 8-bay storage tower, but I got the supplier to configure it as JBOD for me at source. So.....
    I just bought a Lacie 2 Big Thunderbolt, 6 TB drive. Out of the box,when connnected it comes up as one icon, of 6 TB's in size. Fine: that is what I want. I think. The reason why I'm not sure is, because what I seek is a JBOD-type arangement,where the two drives appear as one continous device. Is that what I have here out of the box? I certainly looks like it. I don't really want a RAID-configured setup: I've heard bad things about it, relating to reliability and, anyway, I'm not using it for backup. I'm wanting to stream large amounts of audio.
    I looked at the Mac's Disk Utility and the Lacie also comes up as two , 3 TB "slices", but,to all intents of purposes, they're "invisible" on the desktop. As an example of my ongoing ignorance on this, another question: if I copied over,say, 4 TB's of data to the Lacie, as it is out of the box, can I assume that that single mounted icon will show the 4 TB's,as if it's contained in one drive? I specifiy 4 B, because it exceeds 3 TB in size, referring to the two 3TB slices mentioned earlier.
    I think the 2 Big seems right for what I want as it is, but I don't want to waste time putting data on it, only to find it's not configured in the way I'd imagined.
    BTW, for what it's worth, my OS is Mountain Lion, and the computer is the latest,slim, iMac, 32GB RAM.
    Thanks for humouring me: all advice will be most appreciated.

    Hi, and many thanks for the reply. What's bad about RAID? Well, you've immediately pointed out something that is better handled by a JBOD configuration! I did a quick research on this very forum and some people said it was unreliable and could incur data loss.
    I appreciate the tech advice regarding JBOD. However, right now, because I was in a hurry and didn't get any answers. I went ahead with the default RAID zero. I already have a 4TB drive with over 2.3 TB of samples, and copied it all over. It took 10 hours, so in a hurry, sounds slightly ironic now.
    In terms of losing one of the HD's,  as you pointed out, I do have the backup on the 4 TB; I'll always have the data there to restore from, so I don't feel quite so anxious about it.
    However, because it's a Lacie, and they have been notoriously unreliable in the past ( I, personally have lost two Lacoe drives ), Im not 100% comfortable about hte reliability. I hear they've improved, though.

  • Big Big Gnarly Question

    Hi people!
    I was just contemplating some question about arrays that I had this morning. Well, my question is about memory allocation. If I declare a new array of say 50 integers and then use it then declare another array of 30 integers using the same variable is the memory automatically deallocated? Some code will probably explain this gnarly dilemma...
    int Numbers[] = new int[50];
    // Do something with Numbers...
    Numbers = new int[30];
    // Do something with numbers.Help me please. I expect a mondo answer and whichever one of you funky people gives me I good answer I will reward you with a Brushky! Ha ha ha... just kidding! I'll reward you with some tubular Duke Dollars instead. Winner takes all dudes!

    each time you use the new operator regardless of whether the thing being created is an array or an object then more memory is allocated
    memory is freed if it is unused - ie if your program could not possibly use the memory for something else - ie if there are no more references to the object
    http://java.sun.com/docs/books/tutorial/java/data/garbagecollection.html
    in your example you create an array of size 50, which is references via the variable "Numbers"
    you then reassign the variable "Numbers" to a new array of size 30
    if nothing else references the first array (eg you haven't assigned another variable to reference it) then it will be a candidate for garbage collection
    when the memory is exactly freed depends on the garbage collection algorithm
    asjf

  • Big-OH and Big-Omega question?

    I am looking for some inputs regarding Big-OH and Big_Omega of a method that I wrote. This method implements queue data structure and its purpose is to find primes of a number using Sieve of Eratosthenes. I am thinking it is a Big-Oh of N^2 (upper bound), since it is a nested while loop, but I am not sure of the lower bound, which Big_Omega. Any comments guys? Thanks
    public static void printAllPrimes(int max)
              LinkedQueue qNum = new LinkedQueue();     //list of numbers
              LinkedQueue qPrime = new LinkedQueue();     //list of primes
              LinkedQueue qTemp = new LinkedQueue();     //temporary list of numbers
              Integer object = new Integer(0);          //prime number
              Integer temp; //temp holder for comparison                                   
              //copy all numbers to qNum beginning with 2.
              for(int i = 2; i<=max; i++)
                   Integer num = new Integer(i);
                   qNum.enqueue(num);
              //checking for multiples of next prime until qNUm is empty
              do
                   //remove next prime from qNum and store it to qPrime
                   object = (Integer)(qNum.dequeue());
                   qPrime.enqueue(object);
                   //check for multiples of a next prime value
                   while(!qNum.isEmpty())
                        temp = (Integer)(qNum.first());
                        if((temp.intValue() % object.intValue() == 0))
                             qNum.dequeue();
                        else
                             qTemp.enqueue(qNum.dequeue());
                   //copy the content of qTemp to qNum
                   while(!qTemp.isEmpty())
                        qNum.enqueue(qTemp.dequeue());
              }while(!qNum.isEmpty());
              //print primes of number
              System.out.println("********** Primes of " + max + " **********");
              while(!qPrime.isEmpty())
                   System.out.print(qPrime.dequeue() + " ");
              System.out.println();

    Use &#91;code]&#91;/code] tags, and you can get much more legible code: public static void printAllPrimes(int max)
        LinkedQueue qNum = new LinkedQueue(); //list of numbers
        LinkedQueue qPrime = new LinkedQueue(); //list of primes
        LinkedQueue qTemp = new LinkedQueue(); //temporary list of numbers
        Integer object = new Integer(0); //prime number
        Integer temp; //temp holder for comparison
        //copy all numbers to qNum beginning with 2.
        for(int i = 2; i<=max; i++)
            Integer num = new Integer(i);
            qNum.enqueue(num);
        //checking for multiples of next prime until qNUm is empty
        do
            //remove next prime from qNum and store it to qPrime
            object = (Integer)(qNum.dequeue());
            qPrime.enqueue(object);
            //check for multiples of a next prime value
            while(!qNum.isEmpty())
                temp = (Integer)(qNum.first());
                if((temp.intValue() % object.intValue() == 0))
                    qNum.dequeue();
                else
                    qTemp.enqueue(qNum.dequeue());
            //copy the content of qTemp to qNum
            while(!qTemp.isEmpty())
                qNum.enqueue(qTemp.dequeue());
        }while(!qNum.isEmpty());
        //print primes of number
        System.out.println("********** Primes of " + max + " **********");
        while(!qPrime.isEmpty())
            System.out.print(qPrime.dequeue() + " ");
        System.out.println();
    }

  • Big O question

    If I have something that has N^2 + N^2logN when I am trying to find its big O, would it be O(N^2) or O(N^2logN)?
    Thanks!
    Lindsey

    BIJ001 wrote:
    JosAH wrote:
    N^2 + N^2(logN) == (N^2 + 1)*(logN);What about this version?
    N^2 + N^2(logN) == N^2 * (logN + 1);
    Erm, yes, but I didn't have my espresso yet (I had to go and pick up my car from the mechanics this morning) so I am not responsible ;-)
    kind regards,
    Jos

  • Big Picture Questions on Aperture usage

    Hi!
    My company manufactures a product that our customers are nutso about. We encourage them to take photos of themselves, and send the photos to us. We then publish them on our web site.
    As a result, I receive sometimes a couple of hundred photos a month, usually via email, and of widely varying sizes/resolutions.
    I then categorize these with keywords, so when I need to find an image (for an ad, brochure, whatever), I can quickly trim these 8,000 images down to a reasonable number to choose from.
    My questions are thus:
    1. What is the best way to get these images into Aperture? I need to import them into a project so I can sort and keyword them, but they are not all a part of a single project...
    2. Is there any way to create smart albums for images that do NOT contain a specific keyword?
    3. I want to create an album of images that are of print resolution (150 dpi, or more). So I create a new SmartAlbum, but what EXIF data can I use as my limit? I don't see resolution, dpi, or anything similar listed anywhere... what am I missing, here?!?
    I appreciate any and all help that people can provide!
    Thank you,
    - CJ
    Utilikilts Company
    iMac G5 20" Mac OS X (10.4.5)
    iMac G5 20"   Mac OS X (10.4.5)  

    Hi CJ,
    My .02¢...
    Assuming you're having Aperture manage your photos (as opposed to referencing them), here is a possible workflow.
    1. Create the projects you want to place the photos into, then save the photos into folders on your desktop with names that correspond to the project names.
    2. Normally you'd create a smart album based on some kind of data, as opposed to non-data. Perhaps simply rating the photos you want in this album with one star, then setting up the album to look for photos with only one star.
    3. DPI is done on export, as DPI is for printing not screen resolution. Screen res and dpi are different beasts. At any rate, you may want simply drag the photos your going to print into a normal album entitled PRINT, etc.
    HTH

  • Big blue question mark with Quicktime Symbol???

    Hi, everytime I want to open up a web page or something with streaming media in it, I always get a symbol with the Quicktime sign and a question mark. Please help.

    go under quicktime settings then to browser then mime setting and turn off flash media under misc.
    hope that helps

  • Big Big Image Question

    Hi,
    I'm working with Image objects and I'm wondering about something. If I'm not working in an applet,
    but an application, can I still use the applet class to load images? Is that possible or do I have to revert to the harder to use buffered image which I have no idea of how to load GIFs, PNGs, or other file formats? Please help me on this one.

    If you really want to load images the old-fashioned way (as in Applet),
    You can get the toolkit:
    Toolkit tk = Toolkit.getDefaultToolkit();Then use one of the various createImage or getImage methods, for example:
    Image image = tk.createImage(byteArray_or_string_or_URL_or_imageProducer);I'm wondering why you think BufferedImages are harder to use than plain
    images. It's the opposite! You can read a BufferedImage by:
    BufferedImage bi = ImageIO.read(file_URL_or_InputStream);The j2se jre comes with readers for GIF, JPEG and PNG formats. You can go here
    and download readers for BMP, JPEG, JPEG 2000, PNG, PNM, Raw, TIFF, and WBMP image formats.
    Java is using the Service Provider pattern here, so the above line of code is
    still all you need.

  • Challenged: Big query question

    Here is a sample of data I have for a table with four columns (id,status,start_date,end_date)
    What I need to do is to get difference of the start dates of the maximum available dates, if data is valid. The pseducode is as follows:
    IF end_date of New status is null
    THEN return null
    ELSE
    IF start_date of old >= start_date of new
    THEN return (start_date of old - start_date of new)
    ELSE return null
    I used the following query but always return the bold null
    select id,
    (case when max(end_date) keep (dense_rank last order by decode(status,'new',1,0),start_date) is null then
    null
    else
              (case when max(decode(status,'old',start_date,null)) >=
              max(decode(status,'new',start_date,null))
              then max(decode(status,'old',start_date,null)) - max(decode(status,'new',start_date,null))
    else
    null
    end)
    end) result
    from tbl where id =1
    Based on the below sample, I expected to get the following result; 14-Mar-07 - 16-Feb-07 which is the difference of the maximum start_dates of the two statuses. However the query is not working.. Please help me.. Thank you..
    Id Status start_date end_date
    1 new 03-Feb-07 07-Feb-07
    1 new 16-Feb-07 21-Feb-07
    1 old '10-Mar-07 12-Mar-07
    1 old '14-Mar-07 16-Mar-07

    Is it this you were looking for
    select id, status, start_date, end_date, lag_start_date
    from (
    select id,
    status,
    start_date,
    decode(status, 'new', null, end_date) end_date,
    lag(start_date) over (order by start_date) lag_start_date
    from test)
    where lag_start_date <= start_date ;
    ID STA START_DAT END_DATE LAG_START
    1 new 16-Feb-07 03-Feb-07
    1 old 10-Mar-07 12-Mar-07 16-Feb-07
    1 old 14-Mar-07 16-Mar-07 10-Mar-07

  • Big Layers question

    My name is Marc and I am new to Dreamweaver, although I have
    made alot of sites with Frontpage.
    I am trying to put a virticle navigation bar into a layer,
    this is easy enough, but I would like this layer to move up and
    down with someone scrolling up or down a long page. I also need all
    the links within the navigation bar to be accessible. To do this I
    don't want the layer to start to move down until you start
    scrolling past the bottom of the nav bar, same with moving up.
    I have tried the over the counter freebee behaviors, some
    come kind of close but no cigar.
    Does anyone have an event / action (behavior) for this?
    P.S. I don't have alot of funds, I mainly build web sites as
    a hobby.
    Thank You

    Check Marja Ribbers-de Vroed's site
    http://www.flevooware.nl/dreamweaver
    for a persistent layer extension.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "MCC_1701" <[email protected]> wrote in
    message
    news:e8udsn$7ju$[email protected]..
    > My name is Marc and I am new to Dreamweaver, although I
    have made alot of
    > sites
    > with Frontpage.
    >
    > I am trying to put a virticle navigation bar into a
    layer, this is easy
    > enough, but I would like this layer to move up and down
    with someone
    > scrolling
    > up or down a long page. I also need all the links within
    the navigation
    > bar to
    > be accessible. To do this I don't want the layer to
    start to move down
    > until
    > you start scrolling past the bottom of the nav bar, same
    with moving up.
    >
    > I have tried the over the counter freebee behaviors,
    some come kind of
    > close
    > but no cigar.
    >
    > Does anyone have an event / action (behavior) for this?
    >
    > P.S. I don't have alot of funds, I mainly build web
    sites as a hobby.
    >
    > Thank You
    >
    >
    >

  • Big noob question about podcasting

    im so new to this. what programs could i use to create a podcast?

    See this page for software which can be used to create a podcast, and here for information on creating it.
    (18403)

  • Big database question

    Dear all,
    please help in such a problem - we have a database, total size on disc is about 39 Gb, 2 dense dimensions, 6 sparse dimensions, loaded weekly and monthly. Load file size is about some tens Mb at the begin of the month and about 600 Mb at the end of the month (~ 1.5 million lines). Last time when monthly loading was running, dimension build was done successfully, but data import failed. The reason was that Essbase created one additional data file (.pag) of 2G size and tried to create another data file but free space on the disc was over. Yes, it wasn't too much free space on disc but never before Essbase needed so much free space. It looks a bit strange that for 600 Mb load file Essbase create some 2Gb data file. Please give me some tips - is this behaviour normal and what shoud i do to improve situation. Essbase version 7.1.2 .
    Thank you.
    Natalia.

    Hi All,
    Can someone help me to resolve this essbase server error :
    Error(1270041) : Sort operation ran out of memory. Please increase the size of aggregate storage cache
    I am trying to extract data of 1.5 GB from an ASO application with Essbase server v9.3.0. I tried to increase Data retrieval buffers i.e. buffer size and sort buffer size from 10 KB to 100000 KB which is maximum. I also tried to set VLBREPORT TRUE in essbase config file. All in vain. Server gives same error. Please help me how to resolve this issue. I am getting this error while extracting 1 GB of data as well as 16 MB of data too.
    While extracting 16 MB data sometimes I get this error also :
    "Error 1001200 - Report error. Not enough memory to continue processing."
    Please let me know how to resolve these errors.
    Thanks
    Prakash

  • Help Needed Configuring Post Set Up For Big Indie Feature:

    We’ve got incredible performances from an amazing cast of well-known character actors from film, TV and stage, a unique and inspiring script, and some truly beautiful, cinematic footage. And now — it’s all about putting it together…
    But I’m having trouble finding an accurate, effective and (most importantly) a DETAILED workflow accommodating the latest version of Premiere, to post a LENGHTY feature film shot on the RED Epic in 5k FF.  I’ve reviewed videos here, but in conducting edit tests, I'm encountering all manner of glitches and problems, and need to ensure that I am properly configuring our post workflow and all of the associated hardware.
    I’ll be dividing the film into project file “reels” to help keep things manageable.  As editor and DP, it's also most important for me to edit on a 4k timeline (to take advantage of reframing and stabilization of the 5k). Footage is on three Pegasus II RAIDS.
    There will be a LOT of FX work done outside of Premiere in AE (and other compositing and graphics programs).  I’m planning to finish in Resolve, outputting at 4k.
    I have the new Mac Pro with:
    - 2.7GHz 12-core Intel Xeon E5 with 30MB of L3 cache
    - 64GB (4x16GB) of 1866MHz DDR3 ECC - 4X16GB
    - 1TB PCIe-based flash storage
    - Dual AMD FirePro D700 GPUs with 6GB of GDDR5 VRAM each
    A Sonnet Echo Express III Desktop 3-Slot (with Thunderbolt upgrade) housing the following:
    - Red Rocket
    - Connection card for HP LTO5 Ultrium 3000 Sas Ext Tape Drive
    If needed, I’m open to acquiring other cards or hardware, too (possibly adding the Red Rocket-X to the mix).  And if the referral of a PAID individual with firsthand knowledge of such a setup – to at least help with the initial set up and configuration – is what I need, I’m open to that, as well.
    We truly have an amazingly powerful compilation of principal photography, and a great story to tell — I just need to overcome this major hurdle of setting up our post.  As a somewhat newbie to Premiere, I greatly appreciate any advice, pointing-me-in-the-right-direction, or suggestions of individuals to help oversee this for compensation and screen credit that anyone can offer me here...
    Many Thanks,
    Bill

    Oooh...big involved questions and many of them.
    If it helps..
    A few things I know I would do before even starting on the actual film edit
    ..is give the new system a massive shakedown.
    Thrash the hardware  and software with test footage , graphics and audio etc.
    Test the pipelines and workflows.
    Set up a BACKUP routine. DO NOT RELY ON AUTOSAVES
    Would  NOT do  O.S updates once started with a stable system.
    Me...I would not use a Dynamic Link workflow for FX.  (I would use D.Is)
    Would create a flow chart plan for the edit and post prod to avoid generation losses, efficiencies and scheduling.
    Work toward  lock downs before FX , audio, CC and Grade. (Avoid the trap of being creatively impatient for the benefit of a smooth edit experience)
    Sort this first...
    I'm encountering all manner of glitches and problems, and need to ensure that I am properly configuring our post workflow and all of the associated hardware.
    You might want to specify some of this stuff and see if you get answers here or elsewhere..
    Suggestion - can you wait for next version of PPro ? - coming very soon evidently. Start with latest version so you don't need to update midstream.  A feature takes a long time to post and some cool new  features may help. eg  Master Clip enhanced.
    Have you considered Prelude in the workflow to log and set up your project. ( Never used it myself but I would consider/investigate  it for long form)
    Good luck and enjoy the edit process.

  • Big picture - conceptual guidance

    As a newbie buying CS5 Web Premium I started using Flash Catalyst first. I initially found Catalyst was more useful to me as I am more interested in Flash use for web design. I tried out all the main features and loved it. However, there are some things that FC just will not do and so I need to develop my knowledge of Flash Pro.
    Here's the thing I need guidance on. I find the Page/States so easy to grasp. They are excellent for tranistions and make designing web pages/sites so much easier, that concept is simple and fluid to me. What I fail to grasp is how one would operate in Flash Pro - in a similar way. I apreciate the Timeline use in Flash Pro for animation but Animation is not my thing. I will make more use of the 'website interaction' stuff that Flash is capable of.
    So I guess the 'big picture' question is this - How does one use Flash Pro in a kind of Page/States way ?
    Does one use grouped layers instead of page/states - or - does one use key frames instead of Page/States ?
    Before I start designing, I really want to grasp the concept of operating in Flash Pro to produce websites so I have the foundation set in my mind.
    I hope I got the issue across - I fear I have not communicated this very well but hopefully, someone out there will understand.
    regards

    There are a number of different ways to approach a web site design in Flash, and all kinds of variations among them and in combining them since each can serve a useful purpose.  You can use the timeline to isolate separate sections, or you can use movieclips to contain them and manage their visibility, or you can have your sections as separate swf files (or library content) that get loaded dynamically, or you can have content that is created entirely dynamically using internal/external data resources.
    I'd say rather than picking one to follow, learn them all since they all offer certain features that prove useful under varying circumstances.

  • Can I delete big 7z files for Pre8 and Photoshop8?

    I am trying to clear some space on my hard drive and found (in the "My Documents" folder for some reason ) three 7z files that altogether take up more than 6GB of space. For example, PremiereElements_8_Content_WWEFDJ.7z
    These appear along with the extractors, which aren't big.
    Question is, if I delete these files will it affect the programs and how?
    Thanks

    It appears you downloaded the software, instead of buying a disc... is that true?
    If yes, write the files to a CD and keep it safe... and write a file with your serial number(s) to the same CD so you will be able to reinstall in case of a hard disk problem
    In fact, while your computer is working, you should also make a backup of your hard drive
    Hardware crashes or virus infections happen, so you should buy software to make a full backup of your hard drive to an external USB hard drive... which makes restoring very easy to a new drive in the same computer, or to the same drive in case of corruption
    The product I use is at http://www.terabyteunlimited.com/image-for-linux.htm
    Image runs off of a bootable CD via Linux (the Zip you download includes a program to make the bootable CD) and it reads EVERYTHING on the drive, even the hidden registration information, so everything is restored when needed... and you may restore the image to a brand new drive and not have to re-install anything
    Please note that I own no part of Image, and I don't get a referral fee (that is just a plain web link) but I use the program and it has saved me a LOT of trouble when I had a hard drive die... and I was able to restore everything and not have to re-install or re-activate a single program, from Windows on up

Maybe you are looking for

  • The dialog box open twice when open file from the server

    I use the following code to download/open file from the server: <% String filename = "MengxianhuiDocTest.doc"; String filepath = "D:\\"; response.setContentType("APPLICATION/OCTET-STREAM"); response.setHeader("Content-Disposition", ??attachment; file

  • OIM11g Error GTC trusted recon using Database Application Tables 9.1.0.5.0

    Hi! I'm using OIM 11g (11.1.1.3.0) with Database Application Tables 9.1.0.5.0. I've setup GTC trusted recon connector as follows: 1st Step: Filled required Run time parameters 2nd Step: Mapped 11 fields - User ID - First Name - Last Name - Email - Or

  • PS Elements 11 -- Incorrect Colors, color painted not matching color selected -- Help please!

    Having a really odd issue with colors. The color that I have in my brush/paint bucket does not match the color that I picked up in my eye dropper/foreground color. Instead it paints out some diluted version of the color I'm using, and I have no idea

  • Mac OS 10.8 Installation Problems

    After installation the computer will not boot up and constantly cycles. Did a safe start and lost my Safari application. I have an NVIDIA quadro 4800 Graphics Card installed and I was able to download the latest update in 10.7.4, but 10.8 doesn't all

  • BP_CONT_SEARCH own button and own logic

    Hello, i need to implement a own button in the result list of component BP_CONT_SEARCH. Which method do i need to redifine to add my own button? With this button i need to read additional data to all Contact persons in the result list and export a de