⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testclient.java

📁 基于SKYPE API 控件的开发示例 JSkype is an JNI implementation which enables Java clients to use the Skyp API
💻 JAVA
字号:
/*******************************************************************************
 * Copyright (c) 2006 Koji Hisano <hisano@gmail.com> - UBION Inc. Developer
 * Copyright (c) 2006 UBION Inc. <http://www.ubion.co.jp/> All rights reserved.
 * 
 * Copyright (c) 2006 Skype Technologies S.A. <http://www.skype.com/>
 * 
 * This program and the accompanying materials are made available under the
 * terms of the Common Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors: Koji Hisano - initial API and implementation
 ******************************************************************************/
package com.skype.sample;

import java.io.IOException;
import java.io.PrintWriter;
import java.io.Writer;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

import com.skype.connector.Connector;
import com.skype.connector.ConnectorException;

public class TestClient extends Shell {
    public static void main(String args[]) throws Exception {
        Display display = Display.getDefault();
        TestClient shell = new TestClient(display, SWT.SHELL_TRIM);
        shell.open();
        shell.layout();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
    }

    private Text toSkype;

    private Text fromSkype;

    public TestClient(Display display, int style) throws ConnectorException {
        super(display, style);
        createContents();
    }

    protected void createContents() throws ConnectorException {
        setText("Test Client");
        setSize(400, 300);
        final GridLayout gridLayout = new GridLayout();
        gridLayout.numColumns = 2;
        setLayout(gridLayout);

        fromSkype = new Text(this, SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY | SWT.BORDER);
        fromSkype.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true, 2, 1));
        Connector.getInstance().setDebugOut(new PrintWriter(new Writer() {
            @Override
            public void write(char[] cbuf, int off, int len) throws IOException {
                final String appended = new String(cbuf, off, len);
                Display.getDefault().asyncExec(new Runnable() {
                    public void run() {
                        fromSkype.append(appended);
                    }
                });
            }

            @Override
            public void flush() throws IOException {
            }

            @Override
            public void close() throws IOException {
            }
        }));
        Connector.getInstance().setDebug(true);

        toSkype = new Text(this, SWT.BORDER);
        toSkype.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));

        final Button send = new Button(this, SWT.NONE);
        send.addSelectionListener(new SelectionAdapter() {
            public void widgetSelected(SelectionEvent event) {
                final String command = toSkype.getText();
                new Thread() { // Use execute(String) without waiting
                    @Override
                    public void run() {
                        try {
                            Connector.getInstance().execute(command);
                        } catch (ConnectorException e) {
                            // Skip not Skype errors
                        }
                    }
                }.start();
            }
        });
        send.setText("&Send");
    }

    @Override
    protected void checkSubclass() {
        // Disable the check that prevents subclassing of SWT components
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -