大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
大概的如下所示:
坚守“ 做人真诚 · 做事靠谱 · 口碑至上 · 高效敬业 ”的价值观,专业网站建设服务10余年为成都成都玻璃钢雕塑小微创业公司专业提供企业网站制作营销网站建设商城网站建设手机网站建设小程序网站建设网站改版,从内容策划、视觉设计、底层架构、网页布局、功能开发迭代于一体的高端网站建设服务。
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class DetailsFrame extends JFrame implements ActionListener {
boolean isFold = true;
JTextArea area = null;
JScrollPane scrollpane = null;
public DetailsFrame() {
JPanel panel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
JButton btn = new JButton("Details");
btn.addActionListener(this);
panel.add(btn);
add(panel, BorderLayout.NORTH);
area = new JTextArea();
scrollpane = new JScrollPane();
scrollpane.setVisible(false);
scrollpane.setViewportView(area);
add(scrollpane, BorderLayout.CENTER);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(400, 100);
setVisible(true);
}
public static void main(String[] args) {
new DetailsFrame();
}
public void actionPerformed(ActionEvent e) {
JButton btn = (JButton) e.getSource();
if (isFold) {
scrollpane.setVisible(true);
setSize(400, 300);
btn.setText("Details");
isFold = false;
} else {
scrollpane.setVisible(false);
setSize(400, 100);
btn.setText("Details");
isFold = true;
}
}
}
写一个servlet或jsp来接收,在servlet或jsp处理业务逻辑,后返回处理结果或新的数据
如jsp:
%@ page errorPage="/common/error/error.jsp" %
%@ page contentType="text/html;charset=GBK"%
%
String planeNumber = request.getParameter("planeNumber");
String planeType = com.aerolink.aocs.system.parameter.list.PlaneTypeFactory.getPlaneType(planeNumber);
response.getWriter().write(planeType);%
1、新建一个记事本,后缀名是.java,在里面写一段java的代码。
2、把写好的java文件放进D盘,就是第一步给出的那个class文件。
3、打开dos界面,开始-运行-cmd-这个是命令行模式,选择D盘。
4、在命令提示符中输入javac文件名.java,输入javacjava.java回车,等待编译。接下来是java环境变量设置的问题。
5、下载一个jdk执行默认安装。
6、配置环境:右击电脑点属性,进去点高级就能看到环境变量。点进去就能设置系统变量。
import java.util.*;
public class test{
public static void main (String []args){
double AssignmentsScore=Assignments();
System.out.println(AssignmentsScore);
}
public static double Assignments(){
Scanner stdin = new Scanner(System.in);
System.out.println("Please input your Assignment1 score (out of a maximum of 10 marks each)");
double Assignment1=stdin.nextDouble();
if (Assignment1=1 Assignment1=10){
System.out.println("Please input your Assignment2 score (out of a maximum of 10 marks each)");
double Assignment2=stdin.nextDouble();
double AssignmentsScore=Assignment1+Assignment2;
return AssignmentsScore;
}else{
System.out.println("Please input the score between 1-10");
return Assignments();
}
}
}
这样改动最小了