Is it possible compiling code with java2 sdk 1.4.2_16 using netbeans 6.5.1?

Hi,
I'm using NetBeans 6.5.1 ide (uses jdk 1.6).
I prepared java codes to deploy the system uses java version 1.4.2_16.
Is it possible to compile code for 1.4.2_16 using NetBeans 6.5.1?
Thanks.

If you really have iphone 3gs, then you can update it further.
If you have an iphone 3g, then you cannot.
Identifying iPhone models - Apple Support

Similar Messages

  • Possible to code a Find/Find Next feature for use inside a Table Control

    Hello,
    I have a Table Control that displays many lines.  Is it possible to code a Find/Find Next feature that would allow the user to enter a 'keyword' then search each line of the Table Control for existing matches?
    I have provided the user with various Selection Criteria that will filter the table control results, but there are still too many lines to visually scan for the desired result.
    I am guessing that I would place an input box and a 'Find' button onto my layout screen. Then in user command, I have to scroll through each line of the table control and check every value to see if the string contains 'keyword' When found, stop  and display table control assigning current line as Top line?
    Am I on the right track or is there a better solution already?
    Kind Regards,
    MPersson

    I've done that. It works pretty well. You might want to allow the user to search only in selected column(s) as well.
    Rob

  • Errors compiling program with RFC SDK 700 for ECC 6.0

    Hi,
    We are getting an error when trying to compile a program on HP_UX HP9000.  We downloaded the RFC SDK for 700.  The command we are using is:
    cc sapsockets.c librfc.a -o sapsockets -lm -lcl +DA2.0W
    The error we receive is:
    ld: Unsatisfied symbol "xdr_string" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__nw__FUl" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__dl__FPv" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "xdr_free" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "[Vtable]key:__dt__21__versioned_type_infoFv" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__PureVirtualCalled" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__dla__FPv" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__nwa__FUl" in file librfc.a[cpictlib.o]
    ld: Unsatisfied symbol "__ConstructMarkedArray__FPvUiUlPFv_vT4" in file librfc.a[cpictlib.o]
    9 errors.
    I don't have much experience in this area.  Sorry I couldn't supply more information.
    Any help is appreciated.
    Thanks,
    Domenick

    See note 1056696 - Compiling and Linking RFC Programs with the SAP NW RFC SDK
    HP-UX (PA-RISC, 64 bit)
    aCC -DSAPonUNIX -DSAPonHPPA -DSAPwithUNICODE +DD64 -Aa +W392,829,818,887 -DSAPwithTHREADS -mt -w +O2 -DNDEBUG +inst_compiletime -c <program>.cpp
    aCC -Wl,+n,-z -Wl,-a,default +DD64 -o <program> <program>.o libsapnwrfc.sl libsapucum.sl [and possibly libicudecnumber.sl]
    Markus

  • Cannot compile code with debug symbols

    I have a source code file that will not compile with debug symbols. I get an assertion failed in file ../src/regman/regman_local.cc at line 5224. The compile command and output are below.
    /opt/SUNWspro/bin/cc -g -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    cg: assertion failed in file ../src/regman/regman_local.cc at line 5224
    cg: Out of range
    cg: 1 errors
    cc: cg failed for spirecon.c
    However without the debug options and using the default -fast switch, i.e.
    /opt/SUNWspro/bin/cc -fast -xarch=v9b -xopenmp=noopt -xc99=all -c -o output/spirecon.o spirecon.c
    it compiles without any problems.
    I was hoping someone might have a suggestion as to how what might cause this type of error.

    I have been told this is bugid: 4420630
    It only happens when you try to use the optimizing
    backend code generator without any optimization.
    (That's what -xopenmp=noopt does)
    If you add an -xO1 flag the assertion should go away, but you
    will also lose some (but not all) of your debuggability.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • BOOST ERRORS porting cs4 to cs5 , compiling plugin with cs5 sdk

    i have a project that is working fine with adobe indesign CS4 and now when im trying to build it with cs 5 , i got this error
    boost::move ambigous call to overloaded function in CS5 sdk file file "any_regular.hpp"
    im using VS2008 and boost version 1.49 in my project, i gues its compatability issue of boost with CS5 Sdk

    Pectora:
      Check the C++/Preprocessor/Preprocessing Definitions field in your Project Properties dialog.  Make sure that your Debug version has a "DEBUG" definition placed in there, and that your release version has an "NDEBUG" definition placed in there someplace.  My guess is that either you left one of them out, or that you have the DEBUG definition in your release properties.  Other possibilities are a failure to separate definitions properly or misspelling.
    HTH!
    P.S. I am assuming that you are working with VS8 on a Windows box.  This information should be included in your next submission just to make sure we are all working from the same starting point.

  • Problems Compiling Code With Function Pointers Using Sun CC (SUNWspro)

    I have a header file that contains a declaration to a function pointer as follows:
    int (*pFuncPntr)(char host, char comm, void *data);
    Then, in a *.c file which includes the header file where the function pointer is declared, the prototype for the function is at the top of the file and appears as follows:
    int someFunc(char hostname, char community, void *data);
    Then, in the same *.c file, down below, I attempt to assign the function pointer to the address of the function declared as follows:
    pFuncPntr = &someFunc;
    ... and further down in the *.c file is the definition of someFunc. ........................
    When I compile, I get the following error:
    : identifier redeclared: pFuncPntr
    current : int
    previous: pointer to function(pointer to char, pointer to char, pointer
    to void) returning int : "/vobs/pp2dev/src/cmds/emcp_pmgmtd/sparc_solaris/../emc
    p_pmgmtd.h", line 84
    "/vobs/pp2dev/src/cmds/emcp_pmgmtd/sparc_solaris/emcp_pmgmtd_solaris.c", line 46
    As far as I've read, this is the standard way of assigning a function pointer to the address of a function.
    Does anyone have any ideas what CC compiler is complaining about?
    Appreciate your response,
    dedham_ma_man

    WHen I try to include the ftp.jar package?? I use "package com.enterprisedt.net.ftp;".That isn't how you import a package. That declares that the class it is at the top of will belong to that package, and that's not what you want. I'm guessing that you need
    import com.enterprisedt.net.ftp.*;
    at the top of your code, just after the line where you declare the real name of the package your class is going to belong to.
    By the way, you need the compiled version of your downloaded FTP code, i.e. the .class files. If you got source code (.java files) you'll need to compile them, but you should be able to get the compiled version as a download.

  • Compiling code with OracleRuntime reference

    Hi,
    Currently we are building our code on Windows machines and deploying to oracle that is running on a unix machine.
    Is there a jar I can add to the classpath to have my code compile on my local machine (windows) when it has references to the OracleRuntime?
    Regards,
    Gustav

    Hello Avi,
    I would like to make calls to the OracleRuntime class such as:
    OracleRuntime.getSessionSize();
    OracleRuntime.getNewspaceSize();
    But I would like to compile the code on my windows machine and then deploy it to a unix machine and use loadjava to load the classes into the database. So I am looking for sort of a OracleRuntime dummy class that I can use to compile the code.
    I checked the jdbc driver, but it does not seem to contain any OracleRuntime class.
    /Gustav

  • Error when run the compiled code

    I have code below,
    import java.sql.*;
    public class testmysql{
         public static void main(String args[]){
              Connection conn = null;
    try{
    String userName = "root";
    String password = "password";
    String url = "jdbc:mysql://localhost:3307/ectol_db";
    Class.forName ("com.mysql.jdbc.Driver").newInstance ();
    conn = DriverManager.getConnection (url, userName, password);
    System.out.println ("Database connection established");
    }catch (Exception e) {
              e.printStackTrace();
    System.err.println ("Cannot connect to database server");
    }finally{
    if (conn != null){
    try{
    conn.close ();
    System.out.println ("Database connection terminated");
    }catch (Exception e) {
         e.printStackTrace();
         /* ignore close errors */
    and i have the mysql-connector-5.0.6.jar
    I able to compile code with javac testmysql.java command
    However, when i try to run the code with java testmysql command, it prompt me error below
    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at testmysql.main(testmysql.java:11)
    Cannot connect to database server
    Anyone can help?

    ccwoon80 wrote:
    Actually, the jar and class file was in the same path...
    Thus, what the correct command i need to run the my code?Then your classpath would be .;mysql.jar (or whatever the heck the name of the connector was).
    So java -cp .;mysql.jar foo.bar.MyClass

  • Administering with the SDK

    Hi all,
    Do you know if it is possible to program with the SDK a basic webpage for administering users and folders? Any documentation?
    Regards,
    Bea

    Hi Bea,
    Yes you can do those things.
    documentation
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    goto
    BusinessObjects Enterprise SDK
       Java developer guide (if java)
           Tutorials    
               Client and Admin Desktop Tutorials
                   - How to manage user accounts
                   - How to manage user groups
                   - How to create a new folder in BusinessObjects Enterprise
             etc.....
    Above link is open of the best documentations.
    Thanks,
    Praveen.

  • Re: is it possible to program with Sockets with the Internet as a network.

    I am working with socket programming.
    During the Christams holidays I will need to do some programming at home.
    Is it possible to program with sockets on a home PC using Windows with only the Internet as a network?

    yes it is
    I am also working on an application that uses sockets at the moment, and I asked help a lot by these days ;)
    Maybe I can help you from what I've learned..
    here is a basic:
    create server socket:
    ServerSocket server = new ServerSocket(4444);
    4444 is the port on which the socket is listening
    Socket socket = new Socket("127.0.0.1",4444);
    127.0.0.1 is a local IP adress to connect to and 4444 is the port number to connect to. That considers that the server and the connecting client are both on the same PC, but then you can use other IPs ;)
    Hope it helps

  • Embedded Java code with bpelx:exec

    When I embed Java code with bpelx:exec, I would like use classes packaged in a jar file. How do I ensure that the jar file is deployed with the suitcase? I tried adding the library to the JDeveloper project (right-click project, choose properties, libraries), but that did not work.

    Although the tooling does not expose this functionality yet, the bpel packaging and bpelc command line tool support the ability to put a library in BPEL-INF/lib and using it in the exec activity. You can also put classes in BPEL-INF/classes. Please look at:
    [ORACLE_HOME]\integration\orabpel\samples\references\JavaExec for more information.
    -Edwin

  • Using ABS to compile OpenOffice with KDE3 support?

    Hallo,
    So I'm trying to use ABS to compile OpenOffice with KDE3 support so I can use the KDE file picker (the KDE4 support is really, really broken and too new to be used right now). I pulled Openoffice-base out of my ABS tree and modified the PKBUILD so that kde was enabled and I made kdelibs3 part of the dependencies.
    However, it always says "checking whether KDE is between 3.2 and 3.6... configure: error: KDE version too old or too recent, please use another version of KDE or disable KDE address book support" before failing to compile. I know it's because I'm using KDE4. Is there a way I can trick it into thinking I'm using KDE3?
    It says the path to kdelibs is /usr/lib, perhaps if I changed it to the path to kdelibs3? Where would I do that in the PKBUILD?
    Thanks a lot!

    bstaletic wrote:The weird part, at least to me, is that I saw a lot more then 19 modules during compilation. Is this expected for some reason or have I messed something up?
    Your build method seems ok to me. Can't really say anything about the .config, but kernel modules can have dependencies too. For example, if you choose to build ext4 as a module, it selects at least jdb2 and crc16 modules to be built as well.

  • Is it possible to force 16/32-bit stack alignment without using the optimizer?

    The compiler emits code targeted at the classic Pentium architecture for the -m32 memory model.  I'm running into problems mixing Sun Studio compiled code with code built with other compilers because the other compiler builds under the assumption that the stack is 16-byte aligned.
    The only way I've found to force Sun Studio to comply with that restriction is with -xarch={sse2a,sse3,...}, but this causes the code to pass through the optimizer.  As noted in the documentation, if you want to avoid optimizations you must remove all flags that imply optimizations -- that is to say, there's no way to disable optimizations once enabled.  This should not, however, be treated as an optimization because it's an ABI requirement.
    I've scoured the documentation, spent many hours googling, digging through forums, and asking questions.
    The best I've come up with is the -xarch option which is sub-optimal because it has side effects.  I tried -xchip=pentium4 (this is what my other compilers have set as their default target), but the generated code doesn't force 16-byte stack alignment.
    Is there a way to force the compiler to emit code conforming to a different ABI without using the optimizer?
    -Brian

    Thank you for your response.
    I hope you won't mind my asking: do you have a way to prove that it's not possible to force 16-byte alignment without using the optimizer?  I ask because your username / profile don't give the impression you work for Oracle, so while I think you're probably right it's at least possible that we're both mistaken.  I haven't been able to find any documentation on either stack alignment or altering the targeted ABI short of using the -xarch flag, and even there the details are fairly sketchy.
    -Brian

  • Getting an strange error in "PluginPrefix.pch" while compiling a plugin code with InDesign CS4 SDK.

    Hi everybody,
    Currently trying to compile/build the existing Plugin code (C++) with InDesign CS4 SDK on my Mac OS X 10.5 machine but getting following strange errors.
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:26:27: error: MemoryStatics.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:39:30: error: PluginBuildFlags.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:40:28: error: AnsiBasedTypes.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:41:26: error: ShukHeaders.cp: No such file or directory
    Though above mentioned files are present at the following directory
    /Volumes/../../../Adobe InDesign CS4 SDK/source/precomp/common/
    Note : However initially I did not find “MemoryStatics.h” and “AnsiBasedTypes.h” files in the installed SDK directory. I have downloaded them from the net and copied those into the above mentioned directory.
    I am not much familiar with Mac OS environment and compiling/building C++ code with Xcode. Can anyone help me to resolve this issue (might be very trivial and related to Xcode project configuration) ?

    Thanks for the quick response,
    Yes, current build settings include path shortcuts as mentioned below and it also contains “$(CS_SDK_PATH)/source/public/includes” path in HEADER_SEARCH_PATHS settings.  But still I am getting the same error: MemoryStatics.h: No such file or directory
    CS_SDK_PATH= /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK
    CS_SDK_PRJ_PATH=/Volumes/MAC Extended/Inbetween Extended/Visual Studio/InBetweenDev/Projects/InBetweenCS/IBClientPluginCS3/prjCS4/mac
    Just for clarification : my Plugin code /project files are not inside the InDesign SDK (build/mac/prj). All the plugin project is outside of the InDesign SDK directory. Thus above mentioned CS_SDK_PATH and CS_SDK_PRJ_PATH are completely different.
    Is it expected that the plugin code/project files should be inside the InDesign SDK/build/mac/prj  directory only ? or is it okay if we put it in the completely another directory structure and modify the  SDK_PRJ_PATH accordingly (as in my case) ?
    Please let me know if you want me to elaborate the situation further.

  • Integrating Microprocessor SDK code with existing VxWorks project

    Our company has some custom hardware running VxWorks on PPC processors. It is kind of analogus to the single board RIOs. There is a standard application 'framework' written in C++ by our C++ guys. The hardware can take on different tasks by programming some state machine code to integrate into the framework.
    1) Would it be possible to you the Microprocessor SDK to create those state machines?
    2) Would I use the code generation option and hand the C code the the C++ guys to compile with the framework?
    3) Is the code created by the  Code Generation Only target too generic, i.e. would it need to be massaged before integrating with the other VxWorks code?
    4) Would it be possible to take one of the supplied VxWorks targets and modify it to only spit out the VxWorks optimized C code without trying to call the VxWorks toolchain?
    Sorry for all the questions. I'm not familiar with doing embedded stuff. It would just be a real advantage for us if we could use LabVIEW and the Statechart Module to start customizing our hardware.
    Thanks,
    Pat

    Hi Pat,
    1. If your top level application is a C++ application, it would make more sense for you to use the C Code Generation only target and plug the C code it into the  main app.
    2. The C code that you generate using the C code gen target can be generic but if it has any labVIEW specific datatypes/structures, you will need to compile the runtime library for your target as well. You should be able to use the example targets in the Micrprocessor SDK to do this.
    3. When you use the C code generation only target, set "Generate Library Interface" option to create a C library like interface to your VI. This lets you build it into a shared object like a library.
    Let me know have any more questions,
    Thank you,
    Jaidev 
    National Instruments
    LabVIEW Embedded Product Support Engineer

Maybe you are looking for

  • Problem in Oracle SQL Developer

    Hi All I m using Sql Developer Version 2.1.0.63, Oracle 11g R2 and SQL Server 2008. when i start Quick Migration, in PreMigration Check when i click verify, its gave Locating source plugin Faild. Can any one told me what can i do for migrating data a

  • Color Change When Viewing Media

    Hey All, I have a question and I was wondering if anyone has stumbled onto this. I bought a MBP about three weeks ago and suddenly ran into this issue. Whenever I open VLC to play a movie, the colors on the monitor seem to wash out and look like the

  • I need a print driver for the HP Color LaserJet 3600 for OS X 10.8.3

    Now that I have updated to the newest OS I'm frustrated because neither Hewlett Packard nor Apple has a driver for the printers that I have.  So I can't print from my laptop to any of my printers.  I just need a driver option for and HP Color LaserJe

  • How to remove Flash Player from Windows 2012 R2?

    We don't use any of our server to navigate websites and we don't install any third party softwares. Windows 2012 R2 comes with flash player which we don't need and we definitely wanna remove that software. How can I remove it?

  • Journal Entry for non-stock Item while Good Receipt PO

    In accordance to Accounting Rules, the EXPENSES of non-stock item purchase should be recognize upon Good Receipt PO, journal entry should be created at the point time of GRN instead of invoice. We would like to see this as part of the SBO standard ac