• 大小: 43.04MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-08
  • 语言: Java
  • 标签: API  1.7  java  帮助文档  

资源简介

最新的sun公司官方API 界面也很不错哦。希望能帮到你

资源截图

代码片段和文件信息

/*
 * Copyright (c) 2002 Oracle and/or its affiliates. All rights reserved.
 *
 * Redistribution and use in source and binary forms with or
 * without modification are permitted provided that the following
 * conditions are met:
 *
 * -Redistributions of source code must retain the above copyright
 *  notice this list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright
 *  notice this list of conditions and the following disclaimer in
 *  the documentation and/or other materials provided with the
 *  distribution.
 *
 * Neither the name of Oracle nor the names of
 * contributors may be used to endorse or promote products derived
 * from this software without specific prior written permission.
 *
 * This software is provided “AS IS“ without a warranty of any
 * kind. ALL EXPRESS OR IMPLIED CONDITIONS REPRESENTATIONS AND
 * WARRANTIES INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY
 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE HEREBY
 * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY
 * DAMAGES OR LIABILITIES  SUFFERED BY LICENSEE AS A RESULT OF OR
 * RELATING TO USE MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR
 * ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE
 * FOR ANY LOST REVENUE PROFIT OR DATA OR FOR DIRECT INDIRECT
 * SPECIAL CONSEQUENTIAL INCIDENTAL OR PUNITIVE DAMAGES HOWEVER
 * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF
 * THE USE OF OR INABILITY TO USE SOFTWARE EVEN IF SUN HAS BEEN
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that Software is not designed licensed or
 * intended for use in the design construction operation or
 * maintenance of any nuclear facility.
 */


import java.awt.*;
import java.awt.event.*;
import java.text.*;


public class BidiSample extends frame {

    static String text = “This text has \u0634\u0627\u062f\u062c\u0645\u0647\u0648\u0631 123456 \u0645\u0646 (Arabic)“;

    static public void main(String[] args) {
        new BidiSample().setVisible(true);
    }

    BidiSample() {

        super(“Bidi Sample“);
        addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {

                    System.exit(0);
                }
            });

        setBackground(Color.white);
        setFont(new Font(“Lucida Sans“ Font.PLAIN 16));
        setSize(400 300);
    }

    public void paint(Graphics g) {

        Insets insets = getInsets();
        int height = g.getFontMetrics().getHeight();
        int y = insets.top;
        int x = insets.left + 5;

        y += height;
        g.drawString(text x y);

        y += height * 2;
        g.drawString(“run“ x y);
        g.drawString(“level“ x + 50 y);
        g.drawString(“start“ x + 100 y);
        g.drawString(“limit“ x + 150 y);
        g.drawString(“text“ x + 200 y);


        y += height;
        Bidi bidi = new Bidi(text

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件    43193566  2011-08-31 22:17  j2se7.chm
     文件         766  2009-06-23 02:29  j2se7.ico
     文件          86  2006-06-22 00:09  Web site.url
     目录           0  2011-08-31 21:28  applets\
     目录           0  2011-08-31 21:28  applets\technotes\
     目录           0  2011-08-31 21:28  applets\technotes\guides\
     目录           0  2011-08-31 21:28  applets\technotes\guides\2d\
     目录           0  2011-08-31 21:28  applets\technotes\guides\2d\samples\
     文件         468  2011-08-31 21:28  applets\technotes\guides\2d\samples\BidiSample$1.class
     文件        2207  2011-08-31 21:28  applets\technotes\guides\2d\samples\BidiSample.class
     文件        3993  2011-08-31 21:28  applets\technotes\guides\2d\samples\BidiSample.java
     文件         369  2011-08-31 21:28  applets\technotes\guides\2d\samples\Blur$1.class
     文件        2768  2011-08-31 21:28  applets\technotes\guides\2d\samples\Blur.class
     文件        3931  2011-08-31 21:28  applets\technotes\guides\2d\samples\Blur.java
     文件        4337  2011-08-31 21:28  applets\technotes\guides\2d\samples\BSMCanvas.class
     文件         397  2011-08-31 21:28  applets\technotes\guides\2d\samples\BufferedShapeMover$1.class
     文件        1282  2011-08-31 21:28  applets\technotes\guides\2d\samples\BufferedShapeMover.class
     文件        9287  2011-08-31 21:28  applets\technotes\guides\2d\samples\BufferedShapeMover.java
     文件         369  2011-08-31 21:28  applets\technotes\guides\2d\samples\Edge$1.class
     文件        3128  2011-08-31 21:28  applets\technotes\guides\2d\samples\Edge.class
     文件        4168  2011-08-31 21:28  applets\technotes\guides\2d\samples\Edge.java
     目录           0  2011-08-31 21:28  applets\technotes\guides\2d\samples\images\
     文件       13214  2011-08-31 21:28  applets\technotes\guides\2d\samples\images\bld.jpg
     文件       62731  2011-08-31 21:28  applets\technotes\guides\2d\samples\images\boat.gif
     文件       89062  2011-08-31 21:28  applets\technotes\guides\2d\samples\Imaging_Samples.zip
     文件         373  2011-08-31 21:28  applets\technotes\guides\2d\samples\LookUp$1.class
     文件        2733  2011-08-31 21:28  applets\technotes\guides\2d\samples\LookUp.class
     文件        3889  2011-08-31 21:28  applets\technotes\guides\2d\samples\LookUp.java
     文件         375  2011-08-31 21:28  applets\technotes\guides\2d\samples\Rescale$1.class
     文件        2595  2011-08-31 21:28  applets\technotes\guides\2d\samples\Rescale.class
     文件        3713  2011-08-31 21:28  applets\technotes\guides\2d\samples\Rescale.java
............此处省略83个文件信息

评论

共有 条评论