mfang | fbb4420 | 2015-06-25 16:46:26 -0700 | [diff] [blame] | 1 | '\" t
|
| 2 | .\" Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
|
rgallard | b643545 | 2013-11-25 20:19:02 -0800 | [diff] [blame] | 3 | .\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
| 4 | .\"
|
| 5 | .\" This code is free software; you can redistribute it and/or modify it
|
| 6 | .\" under the terms of the GNU General Public License version 2 only, as
|
| 7 | .\" published by the Free Software Foundation.
|
| 8 | .\"
|
| 9 | .\" This code is distributed in the hope that it will be useful, but WITHOUT
|
| 10 | .\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
| 11 | .\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| 12 | .\" version 2 for more details (a copy is included in the LICENSE file that
|
| 13 | .\" accompanied this code).
|
| 14 | .\"
|
| 15 | .\" You should have received a copy of the GNU General Public License version
|
| 16 | .\" 2 along with this work; if not, write to the Free Software Foundation,
|
| 17 | .\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
| 18 | .\"
|
| 19 | .\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
| 20 | .\" or visit www.oracle.com if you need additional information or have any
|
| 21 | .\" questions.
|
| 22 | .\"
|
mfang | fbb4420 | 2015-06-25 16:46:26 -0700 | [diff] [blame] | 23 | .\" Arch: generic
|
| 24 | .\" Software: JDK 8
|
| 25 | .\" Date: 21 November 2013
|
| 26 | .\" SectDesc: Basic Tools
|
| 27 | .\" Title: appletviewer.1
|
| 28 | .\"
|
| 29 | .if n .pl 99999
|
| 30 | .TH appletviewer 1 "21 November 2013" "JDK 8" "Basic Tools"
|
rgallard | b643545 | 2013-11-25 20:19:02 -0800 | [diff] [blame] | 31 | .\" -----------------------------------------------------------------
|
| 32 | .\" * Define some portability stuff
|
| 33 | .\" -----------------------------------------------------------------
|
| 34 | .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 35 | .\" http://bugs.debian.org/507673
|
| 36 | .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
|
| 37 | .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 38 | .ie \n(.g .ds Aq \(aq
|
| 39 | .el .ds Aq '
|
| 40 | .\" -----------------------------------------------------------------
|
| 41 | .\" * set default formatting
|
| 42 | .\" -----------------------------------------------------------------
|
| 43 | .\" disable hyphenation
|
| 44 | .nh
|
| 45 | .\" disable justification (adjust text to left margin only)
|
| 46 | .ad l
|
| 47 | .\" -----------------------------------------------------------------
|
| 48 | .\" * MAIN CONTENT STARTS HERE *
|
| 49 | .\" -----------------------------------------------------------------
|
mfang | fbb4420 | 2015-06-25 16:46:26 -0700 | [diff] [blame] | 50 |
|
| 51 | .SH NAME
|
| 52 | appletviewer \- Runs applets outside of a web browser\&.
|
| 53 | .SH SYNOPSIS
|
| 54 | .sp
|
| 55 | .nf
|
| 56 |
|
| 57 | \fBappletviewer\fR [\fIoptions\fR] \fIurl\fR\&.\&.\&.
|
| 58 | .fi
|
| 59 | .sp
|
| 60 | .TP
|
| 61 | \fIoptions\fR
|
| 62 | The command-line options separated by spaces\&. See Options\&.
|
| 63 | .TP
|
| 64 | \fIurl\fR
|
| 65 | The location of the documents or resources to be displayed\&. You can specify multiple URLs separated by spaces\&.
|
| 66 | .SH DESCRIPTION
|
| 67 | The \f3appletviewer\fR command connects to the documents or resources designated by \fIurls\fR and displays each applet referenced by the documents in its own window\&. If the documents referred to by urls do not reference any applets with the \f3OBJECT\fR, \f3EMBED\fR, or \f3APPLET\fR tag, then the \f3appletviewer\fR command does nothing\&. For details about the HTML tags that the \f3appletviewer\fR command supports, see AppletViewer Tags at http://docs\&.oracle\&.com/javase/8/docs/technotes/tools/appletviewertags\&.html
|
| 68 | .PP
|
| 69 | The \f3appletviewer\fR command requires encoded URLs according to the escaping mechanism defined in RFC2396\&. Only encoded URLs are supported\&. However, file names must be unencoded, as specified in RFC2396\&.
|
| 70 | .PP
|
| 71 | \fINote:\fR The \f3appletviewer\fR command is intended for development purposes only\&. For more information, see About Sample/Test Applications and Code at http://docs\&.oracle\&.com/javase/8/docs/technotes/samples/aboutCodeSamples\&.html
|
| 72 | .SH OPTIONS
|
| 73 | .TP
|
| 74 | -debug
|
| 75 | .br
|
| 76 | Starts the Applet Viewer in the Java debugger with the \f3jdb\fR command to debug the applets in the document\&.
|
| 77 | .TP
|
| 78 | -encoding \fIencoding-name\fR
|
| 79 | .br
|
| 80 | Specifies the input HTML file encoding name\&.
|
| 81 | .TP
|
| 82 | -J\fIjavaoption\fR
|
| 83 | .br
|
| 84 | Passes the string \f3javaoption\fR as a single argument to the Java interpreter, which runs the Applet Viewer\&. The argument should not contain spaces\&. Multiple argument words must all begin with the prefix \f3-J\fR\&. This is useful for adjusting the compiler\&'s execution environment or memory usage\&.
|
| 85 | .PP
|
rgallard | b643545 | 2013-11-25 20:19:02 -0800 | [diff] [blame] | 86 | .RE
|
| 87 | .br
|
| 88 | 'pl 8.5i
|
| 89 | 'bp
|