Jdk For Mac Os X 10.6

The following is an overview of useful information that we hope will help you to get NetBeans IDE up and running in Mac OS X.

It does not matter whether you install the JDK (the Java Development Kit) or just the JRE (the Java Runtime Environment); if you are never going to mess with Java yourself the. Java for Mac OS X 10.6 Update 16 delivers improved security, reliability, and compatibility by updating Java SE 6. Darwin/Mac OS X. There is an OpenJDK 6 package in MacPorts called openjdk6. To install it, after installing MacPorts, use sudo port install openjdk6 in the Terminal application. If you do not see the openjdk6 port, try sudo port sync. OpenJDK 7 FreeBSD. There is an OpenJDK 7 package in the FreeBSD Ports collection called openjdk7.

System Requirements and Installation

For the minimum and recommended hardware configuration, see the NetBeans IDE 8.0 Release Notes.

For Mac OS X installation instructions, see the NetBeans IDE 8.0 Installation Instructions for Mac OS X.

Issues and FAQs

See the following documents for Mac-related issues and FAQs.

Shortcuts on Mac OS X

The IDE has a default set of keyboard shortcuts that you can use to invoke functions. In some cases, the default IDE shortcuts can conflict with default Mac OS shortcuts. In particular, some function keys used by the Mac OS are known to conflict with some default IDE shortcuts. If you find that some keyboard shortcuts are not behaving as expected, you can modify the shortcut for a particular IDE function by choosing NetBeans > Preferences (Cmd-,) from the main menu and clicking Keyboard in the Options window. You can modify the default Mac OS shortcut by opening System Preferences and clicking Keyboard & Mouse. For more, see the Apple Help topic Using function keys on portable computers.

For a list of NetBeans' Source Editor keyboard equivalents on Mac OS X, see the following table:

Scrolling and Selecting
KeysAction
Cmd-[Moves the insertion point to the highlighted matching bracket. Note that this shortcut only works when the insertion point is located immediately after the opening bracket.
Cmd-Shift-[Selects the block between a pair of brackets. Note that this shortcut only works when the insertion point is located immediately after either the opening or closing bracket.
Ctrl-GJumps to any specified line.
Cmd-ASelects all text in the file.

Modifying Text
KeysAction
Cmd-Shift-JOpens the Internationalize dialog box that you can use to insert an localized string at the insertion point.

Code Folding
KeysAction
Cmd-Minus (-)Collapses the block of code in which the insertion point is currently located.
Cmd-Plus (+)Expands the block of code which is adjacent to the insertion point.
Cmd-Shift-Minus (-)Collapses all blocks of code in the current file.
Cmd-Shift-Plus (+)Expands all blocks of code in the current file.

Recording Macros
KeysAction
Cmd-J then SInitiates the recording of key sequences for a macro.
Cmd-J then EStops the recording of key sequence for a macro and opens the Recorded Macro dialog enabling you to name the new macro.

Cutting, Copying, Pasting, and Deleting Text
KeysAction
Cmd-ZUndo. Reverses a series of editor actions one at a time (excluding Save).
Cmd-YRedo. Reverses a series of Undo commands one at a time.
Cmd-XCut. Deletes the current selection and places it on the clipboard.
Cmd-CCopy. Copies the current selection to the clipboard.
Cmd-VPaste. Pastes the contents of the clipbard at the insert point.
DeleteDelete. Deletes the current selection.
Cmd-EDeletes the current line.
Cmd-KCopies the word preceding the insertion point and then pastes it after the insertion point (the insertion point must be in the whitespace preceeding or following a word). Press K multiple times to cycle through preceding words in succession.
Cmd-LCopies the word following the insertion point and pastes it at the insertion point (the insertion point must be located in the whitespace preceeding or following a word.) Press L multiple times to cycle through consecutive following words.

Jdk For Mac Os X 10.6
Searching for Text
KeysAction
Cmd-GSelects the next occurrence of the word found during the search.
Cmd-Shift-GSelects the previous occurrence of the word found during the search.
Cmd-FOpens the Find dialog box.
Cmd-ROpens the Find and Replace dialog box.

Setting Tabs
KeysAction
TabShifts all text to the right of the insertion point one tab stop to the right.
Cmd-TShifts text in the line containing the insertion point to the right one tab stop.
Cmd-DShifts text in the line containing the insertion point to the left one tab stop.

Modifying Code
KeysAction
Ctrl-SpacebarOpens the Java code completion dialog box.
Shift-EnterEnters the text that is selected in the code completion box into your file.
Ctrl-IOpens the Insert Code pop-up menu.
Ctrl-Shift-IAdds an import statement to the import section of the code when the cursor is over the class name to be imported.
Shift-SpacebarAdds a space without checking for abbreviations to expand.

Jdk For Mac Os X 10.66 Snow Leopard


Using Bookmarks
KeysAction
Cmd-F2Sets or unsets a bookmark at the current line.
F2Goes to the next bookmark.

Note:
For a complete list of NetBeans IDE keyboard equivalents, check the Keyboard Shortcuts Card by choosing Help > Keyboard Shortcuts Card. Alternately, you can reference the Keyboard Shortcuts section of the NetBeans IDE built-in Help.

You can access the Options window on Mac OS X by selecting NetBeans > Preferences (⌘-,) in the main menu.


Tips & Tricks

The following are some techniques you can use to get more out of NetBeans IDE on Mac OS X.

  • To emulate right mouse click behavior.

    Use Ctrl-click by pressing and holding the Control button while clicking. Also see issue #32463 regarding right-click emulation on multiple files.

  • To specify which JDK to run NetBeans on.

    Use the --jdkhome <path> option when starting NetBeans. <path> is the root of the JDK installation. The NetBeans installer looks for suitable JDK installations available on user's system and allows you to select the one you want to run NetBeans on. However, the setting may become obsolete when the user installs a new JDK later, or may be inconvenient if you want to run the IDE with another JDK. That's where the --jdkhome switch comes in handy.

    Note: If you want to set the <path> option permanently, you can do so in the netbeans.conf file as described below.

  • To make custom startup parameters permanent.

    If you want NetBeans to always start with specific options such as --userdir, --jdkhome, --fontsize, etc., so that you don't have to type them on the command line at every launch, the most convenient way is to add your custom options directly to the NetBeans configuration (netbeans.conf) file.

    To do this, Control-click the NetBeans application icon and choose Show Package Contents from the contextual menu. In the Finder window that appears, navigate to the Contents/Resources/NetBeans/etc/ directory, Control-click netbeans.conf, choose Open With from the contextual menu, and select your preferred text editor. Then add the custom parameters you wish to use and save your changes.

    The netbeans.conf file can include the following entries:

    • netbeans_default_userdir: the default location and name of the userdir. Note that this entry is only valid in the global configuration file. It cannot be redefined in the local netbeans.conf file, because the launcher already needs to know the location of the userdir when the local netbeans.conf file is being processed.
    • netbeans_default_options: any parameters passed to NetBeans or the JVM such as memory configuration parameters, debugging options, --fontsize, various experimental switches, etc.
    • netbeans_jdkhome: the default location of the JDK to run NetBeans on. Note that this can be overridden with the --jdkhome switch.

More Information

For more information, visit https://netbeans.org/.

Jdk For Mac Os X 10.66

You can also find news, articles, additional modules, and other useful information on the NetBeans project web site. Since NetBeans is an open-source project, the web site also provides access to source code, a bug database, information on creating your own NetBeans modules, and much more.

Java Jdk For Mac Os X 10.6.8


Jdk For Mac Os X 10.6 10 6 Snow Leopard

Feedback

Jdk For Mac Os X 10.66 Snow Leopard Download

If you encounter any Mac OS X-specific problems, please let us know by filing a bug, but don't forget to specify that you are using the Mac OS X operating system.

Jdk For Mac Os X 10.6 Ard Os X 10 6 Free Download

You can also keep up to date on NetBeans IDE and interact with the NetBeans community by signing up for NetBeans project mailing lists at https://netbeans.org/community/lists/.

Jdk


User Guide
Video tutorial
Support
FAQ
Working Applications
Install
Windows
Windows (no installation)
Mac OS X
Linux
Android
iPhone / iPad
Other Smartphones
Using DNS mode
Using ECHO mode
Using PPTP
Using SOCKS5
IPv6/Teredo
Browsers
Instant Messaging
Filesharing/Downloading
Games
Internet Mail
Multimedia Apps
Forex trading
FTP Tools
Proxy Helpers
OpenVPN mode
Mobile connections
Connection sharing
External Information
Mirrors
Country information
Payment methods
Account disabled

To run Your Freedom on Mac OS X version 10.7 and above you need to install Oracle Java first. It is available for free from the Oracle Java SE download page. Choose the top-most version if more than one is offered. It does not matter whether you install the JDK (the Java Development Kit) or just the JRE (the Java Runtime Environment); if you are never going to mess with Java yourself the JRE will do and it is a lot smaller.

Now download the appropriate Your Freedom installation package from our Download page (the one for OS X 10.7 and newer). Put the ZIP file on your desktop and unzip it by double-clicking it. If you want, move the unzipped application to an appropriate location (the Applications folder would be suitable I guess).

Your Freedom runs on Mac OS X 10.5.7 - 10.6.x, but not on earlier 10.5 versions because it requires Java 6 and earlier Mac OS X versions do not provide Java 6.

This description only applies to Intel based Macs. If you are using a 32bit based Mac, please check out the forums, there is a post in the feedback section explaining how you can do it; just search for 'non-Intel Mac' and you'll find it.

At first you need to ensure that Java 6 is installed on your Mac. In Finder, open Applications, Utilities, Java. There is a tool called 'Java Preferences', open it. It will look like this:

If you don't see 'Java SE 6' in there you need to install an update package. Visit http://developer.apple.com/java/download/ and get the 'Java for Mac OS X 10.5 Update' package (whatever version is current).

Once you've installed it, drag and drop 'Java SE 6' in the Applications area to the top.

Now download the ZIP file for Mac OS X from our download section. Put it on your desktop, then double-click it, this will create the application on your desktop. Drag the Your Freedom application into your Applications folder if you like (you can also leave it on the desktop).

The actual configuration process is the same for all operating systems. Please refer to the User Guide.

The easiest way to do this is to configure a new 'Location'. Open System preferences:

In the 'Internet & Network' section (weird, saying it this way round :-), click on 'Network' and open the 'Location' rollbar; select 'Edit Locations...':

Now click on the '+' sign and add a new location; I have called it 'Your Freedom' but you might want to use another name:

Click on 'Done' when you are. Now choose your new location, it will look like this:

Click on the Advanced button, then choose Proxies. It will look like this:

Configure a proxy for web and https as shown below. You need to tick both and configure 'localhost' port 8080 for both separately. Then tick 'socks proxy' and configure 'localhost' port '1080':

When done, click 'OK', then click 'Apply'. Your new settings will become active and your browser and many other applications will now use Your Freedom.

To switch back to your normal network settings, just open the System Preferences panel again and choose another location, then click on 'Apply' -- easy as that!

Not all applications will honor the proxy settings configured in the System Preferences (for example, Your Freedom doesn't or it wouldn't be able to get connected). With these applications you can use OpenVPN mode -- in which you don't have to change your 'Location' to 'Your Freedom' unless your current 'Location' has proxy settings.

So far there is no convenient way to run YF in 'dump mode' on the Mac. But you can do this:
Open a terminal window (Applications/Utilities). In there, 'cd' to the application installation path. Let's assume you've unzipped the original archive to your desktop, you'd have to type 'cd Desktop'. Then traverse into the application directory by typing 'cd Your Freedom.app', descend down to the place where the Jar file is kept by typing 'cd Contents/Resources/Java'. In there, type 'java -jar freedom.jar --dump' or 'java -jar freedom.jar --shortdump', depending on whether you would like a full or a short dump (in most cases a short dump is enough). This will bring up the YF client in 'dump mode'. Reproduce the problem, then exit the YF client. There will be a 'dump.log' file on your desktop now. It should contain enough information for us to check what's wrong if you send us this file.

Contact/Impressum | Help Us
Acceptable Use | Data Protection Statement