• Title/Summary/Keyword: applet

Search Result 188, Processing Time 0.024 seconds

Development of Class-Based Learning Applet on Numbers and Number Operations (수와 연산 학습을 위한 클래스기반 학습 애플릿 개발)

  • Kim, Min-Jeong;Kim, Kap-Su;Min, Mee-Kyung
    • Journal of Digital Contents Society
    • /
    • v.8 no.2
    • /
    • pp.235-243
    • /
    • 2007
  • Students develop mathematical concepts through concrete operations in the area of mathematics. However, most of the learning contents provided on the web are not interactive and limit interactions with learners. To overcome the limitations, there have been needs to develop learning contents to support active interactions with students according to their cognitive levels. In this study, the curriculum of numbers and number operations in elementary mathematics was analyzed. Based on the object-oriented design principle, "Number Classes" on numbers and number operations were designed and implemented. A class-based learning applet was developed with theses "Number Classes". It was developed in small unit programs based on learning themes of mathematics in elementary schools. With this learning applet, the active explorations through easy operations will help students to learn concepts and principles of numbers and number operations. It will strengthen active interactions of students with computer.

  • PDF

DEVELOPMENT OF 2-D UNSTRUCTURED HYBRID GRID GENERATION PROGRAM USING JAVA APPLET (자바 애플릿을 이용한 2차원 혼합형 비정렬 격자 생성 프로그램의 개발)

  • Lee, J.H.;Cho, K.W.;Kim, B.S.
    • 한국전산유체공학회:학술대회논문집
    • /
    • 2009.11a
    • /
    • pp.65-70
    • /
    • 2009
  • In this paper a hybrid grid generation program for general 2-D region is introduced. The program is developed by using JAVA programming language, and it can be used either as an application program on a local computer or as an applet in the network environment. The hybrid grid system for a 2-D problem means a combination of triangular cells and quadrilateral cells, and it can offer both of the high flexibility of triangular cells and the high accuracy and efficiency of structured-type quadrilateral cells. To accommodate a quadrilateral-cell region and a triangular-cell region into one computational domain, it is importance to take good care of the interface between two different regions so that overall good grid quality can be maintained. In this research advancing layer method(ALM) augmented by elliptic smoothing method is used for the quadrilateral-cell region and advancing front method(AFM) is used for the triangular-cell region. A special treatment technique for the interface between those two regions is also developed. The interface treatment technique is basically to prevent the propagation of small cell size due to ALM method into the triangular region and maintain the smooth transition of cell-size scale between two different regions. By applying current technique high-quality hybrid grids for general 2-D regions can be easily generated, and typical grid generation results and flow solutions are demonstrated.

  • PDF

Design and Implementation of Applet for Multi-Users File Access based on Java Card (자바카드기반 다중 사용자 파일접근에 대한 애플릿 설계 및 구현)

  • Kim, Bum-Sik
    • Journal of the Korea Computer Industry Society
    • /
    • v.7 no.5
    • /
    • pp.481-486
    • /
    • 2006
  • Whereas conveniences deriving from the development of information and telecommunication technology increase, information outflow and illegal data use are also rapidly on the rise. Consequently, many studies to prevent illegal information outflow are currently under way, and the use of Smart Card is in steep jump. Recently, Java Card is diffused fast as an alternative to complement the technical problems of the Smart Card. This paper designed and Implementation the system for multi-users authentication and file access control by user through designing a Java Card applet that is used for information protection and in various application fields. For allowing a file access competence, each user's file access competence is processed via drawing up the access condition table in the applet. Therefore, illegal correction exposure and destruction of information, which become the concerns when multi-users have an access, can be prevented. In addition its application becomes possible in the system requiring multi-users certifications.

  • PDF

An Improvement of the JCVM System Architecture for Large Scale Smart Card having Seamless Power Supply (전원 공급이 지속적인 대용량 스마트 카드를 위한 JCVM 시스템 구조 개선)

  • Lee, Dong-Wook;Hwang, Chul-Joon;Yang, Yoon-Sim;Jung, Min-Soo
    • Journal of Korea Multimedia Society
    • /
    • v.10 no.8
    • /
    • pp.1029-1038
    • /
    • 2007
  • A smart card based on the existing Java card platform executes and installs an application only when the power is supplied for a minute. And preparing for unexpected power outrage, the execution state of an application and all the data that are modified during execution are saved in the heap. This kind of frequent data update of an EEPROM data is a main cause of reducing the life-cycle of a smart card. This is because the smart card has been developed not considering the current situation that the power is always supplied, and by this time it has continuously kept its old architecture. This paper explains the high performance Java card system free power restriction. The system improves not only application saving mechanism, but memory architecture. In special, we deploy RAM for running an applet, as well as EEPROM for downloading an application. Through proposed mechanism, we can find out performance evaluation that the creation speed of an applet and the execution speed of a method increase up to 58% and 33% respectively.

  • PDF

Development of Automatic Dependent Surveillance System with Java on Web Environment (자바를 이용한 인터넷 웹 방식의 항공기 자동감시시스템의 개발)

  • Yoon, Chong-Ho
    • Journal of Advanced Navigation Technology
    • /
    • v.3 no.2
    • /
    • pp.132-138
    • /
    • 1999
  • This paper describes the development of an automatic dependent surveillance system(ADS) with Java on Web environment. The ADS consists of a server module and a client one. The server module performs a database server for gathering GPS data from airplanes. It also dose an Web server function for sending Java applet to clients. The applet enables each client to obtain the current flight information from the server via the Internet without a special client software. This client-server based ADS with Java environment has several advantages over other systems. One is not to need for installing special client software on each client system. The other is its simplicity on system maintenance. The reason why it has simplicity is to require only server program modification including the applet without updating client software. After testing the ADS system with the flight information of a Mooney, we can show that the prototype system can be a candidate for developing commercial products.

  • PDF

A Study on Applet Control on the Internet Communication using Java Bytecode (자바 바이트 코드를 이용한 인터넷 통신의 애플릿 제어)

  • 김문환;나상동
    • The Journal of Korean Institute of Communications and Information Sciences
    • /
    • v.28 no.5C
    • /
    • pp.523-531
    • /
    • 2003
  • Java applets are downloaded from web server through internet and executed in Java Virtual Machine of clients'browser. Before execution of java applets, JVM checks bytecode program with bytecode verifier and performs runtime tests with interpreter. However, these tests will not protect against undesirable runtime behavior of java applets, such as denial of service attack, email forging attack, URL spoofing attack, or annoying sound attack. In order to protect malicious applets, a technique used in this paper is java bytecode modification. This technique is used to restrict applet behavior or insert code appropriate to profiling or other monitoring efforts. Java byte modification is divided into two general forms, class-level modification involving subclassing non-final classes and method-level modification used when control over objects from final classes or interface. This paper showed that malicious applets are controlled by java bytecode modification using proxy server. This implementation does not require any changes in the web sever, JVM or web browser.

A Development of college education contents for Calculus (미분적분학의 대학교육콘텐츠 개발)

  • 김응환;김승동;변두원
    • Journal of the Korean School Mathematics Society
    • /
    • v.4 no.2
    • /
    • pp.143-155
    • /
    • 2001
  • This paper was developmented for teaching of claculus in college with multimedia contents. We focused the point of lecture materials with internet network in mathematics class. We used the 3-D graphics and Java applet with HTML for making contents. We hope this contents is used in calculus class at university.

  • PDF

Web applet for remote conveyor control system (원격 컨베이어 시스템 제어를 위한 웹 애플릿)

  • 박근효;이정배
    • Proceedings of the Korea Multimedia Society Conference
    • /
    • 1998.04a
    • /
    • pp.52-56
    • /
    • 1998
  • 본 연구에서는 클라이언트/서버 형태로 승용차 조립라인을 시뮬레이션한 컨베이어 시스템을 원격으로 제어하는 시스템을 설계하고 구현하였다. 클라이언트 시스템은 상황실에 위치하여 웹애플릿을 통하여 승용차 조립라인의 생산 현장을 영상 감시하고 필요시 제어 프로그램을 장착한 서버에게 컨베이어 제어 명령을 내린다. 또한 서버시스템에서 컨베이어 시스템을 통과하는 생산품 내역에 대한 데이터베이스 시스템을 유지 관리한다.

  • PDF

Web-Based Remote Management of Industrial Inverter using Embedded Linux (임베디드 리눅스를 이용한 산업용 인버터의 웹 기반 원격 관리)

  • 조덕연;최병욱
    • Journal of Institute of Control, Robotics and Systems
    • /
    • v.9 no.4
    • /
    • pp.340-346
    • /
    • 2003
  • Driven by the growth of the Internet and the increasing ubiquity of embedded computing systems, the embedded system is exploding in terms of it proliferation of products and the number of complex applications. Intelligent dedicated systems and appliances used in interface, monitoring, communications, and control applications increasingly demand the services of a sophisticated, state-of-the-art operating system. In the case of industrial controller, it is required to use a real-time operating system (RTOS) as a good building block to enable Internet connectivity. However, commercial RTOSes are increasingly less desirable due to their lack of standardization and their inability to keep pace with the rapid evolution of technology. In order to overcome these problems, we consider using embedded Linux and embedded web server. Availability of source code, reduced licensing, reliability, open source community support, as well as others, are key reasons for the use of embedded linux by embedded developers. In this paper, we develop embedded linux platform to control the industrial inverter with the Internet connecting feature. The method of web-based management is also proposed by using the embedded web server and Java applet. We show the feasibility of remote management for the commercial inverter controller with the proposed three-tier web-based remote management system.

STUDY ON 3-D VIRTUAL REALITY FOR STEREOSCOPIC VISUALIZATION ON THE WEB (웹 환경에서의 입체적 가시화를 위한 3-D 가상현실 기법의 적용)

  • Lee, J.H.;Park, Y.C.;Kim, J.H.;Kim, B.S.
    • Journal of computational fluids engineering
    • /
    • v.16 no.1
    • /
    • pp.30-35
    • /
    • 2011
  • In this paper, our effort to apply 3-D Virtual Reality system for stereoscopic visualization of mesh data on the web is briefly described. This study is an extension of our previous and on-going research efforts to develop an automatic grid generation program specialized for wing mesh, named as eGWing. The program is developed by using JAVA programming language, and it can be used either as an application program on a local computer or as an applet in the network environment. In this research advancing layer method(ALM) augmented by elliptic smoothing method is used for the structured grid generation. And to achieve a stereoscopic viewing capability, two graphic windows are used to render its own viewing image for the left and right eye respectively. These two windows are merged into one image using 3D monitor and the viewers can see the mesh data visualization results with stereoscopic depth effects by using polarizing glasses. In this paper three dimensional mesh data visualization with stereoscopic technique combined with 3D monitor is demonstrated, and the current achievement would be a good start-up for further development of low-cost high-quality stereoscopic mesh data visualization system which can be shared by many users through the web.