導航:首頁 > 編程語言 > java一元系統源碼

java一元系統源碼

發布時間:2021-04-21 01:59:42

1. 在線購物系統java代碼

搜索引擎上搜索SHOP++,在線購物系統,JAVA源代碼都有。

2. java庫存管理系統源碼(有誰做過類似這個項目)求源碼 謝謝

我有進銷存的源碼MVC、Hibernate的都有,但是資料庫是SQL Server 2000的。開發工具採用Eclipse,開發應用伺服器採用Tomcat 。不知可以不???

3. java管理系統源代碼

問題提清楚,是要從技術層面闡述還是業務層面?

4. 誰能給我一個Java源代碼,管理系統的

我有養老院管理系統的。oracle資料庫。不過,這個可是花了四個月完成的。

5. 一元雲購程序源碼怎麼獲得

一元雲購程序,PHP版本的源碼網上有很多,但是Java的就沒有了,Java開發的雲購系統都是經回過轉碼的,而答且Java開發出來的雲購程序因其安全性好,所以都是大公司拿來盈利的,不會從網上找到。如果你想做一元雲購,建議你去大德通科技,Java開發,兩年後給源碼

6. 2月最新java版1元拍購雲購系統商業開源版源碼分享能用么

千萬別浪費錢去買那些所謂的正版授權雲購程序,五六千塊錢白白浪費不說還得不到全套雲購系統的支持與維護,與其白白浪費錢,不如找我買我們的1元歡樂購程序!我們就是從正版開發過來的,且系統更加完善。

7. java倉庫管理系統源碼基於Java的倉庫管理系統。求完整的源代碼。跪謝!!!只有5幣了

可選中1個或多個下面的關鍵詞,搜索相關資料。也可直接點「搜索資料」搜索整個問題。

8. 請問有java 的電商系統的完整源碼+文檔嗎

各大網站上都復會有一些簡單的實例的,制注冊開發去下載看看。

9. java網吧計費系統源代碼

10太少了,嘿嘿,先給你一部分把...下面是1/2的代碼
package com.netbarview;
/**
* <p>Title:主界面(程序主界面) </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright ? 2006</p>
*
* <p>Company: ACCP</p>
*
* @author xplu20000
* @version 1.0
*/
import com.downwork.Downput;
import javax.swing.JFrame;
import java.awt.Container;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JMenuItem;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.ImageIcon;
import javax.swing.JRootPane;

public class NetBar extends JFrame {

JMenuBar MenuCarte = new JMenuBar();
JMenu use = new JMenu();
JMenu help = new JMenu();
JMenuItem about = new JMenuItem(new ImageIcon("img/about20.gif"));
JMenu exit = new JMenu();
JMenuItem up = new JMenuItem(new ImageIcon("img/dbup20.gif"));
JMenuItem down = new JMenuItem(new ImageIcon("img/dbdown20.gif"));
JMenuItem exitout = new JMenuItem(new ImageIcon("img/exit20.gif"));
WelComePanel come = new WelComePanel();
public NetBar() {
//添加本窗體的內容面板
come.setBounds(0, 0, 500, 400);
come.setVisible(true);
this.getContentPane().add(come);

try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}

class all_ActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
String s=e.getActionCommand();
if(s.equals("ab")) {
About abot = new About();
abot.setBounds(300, 300, 280, 170);
abot.setVisible(true);
abot.setTitle("網吧計費管理系統");
} else if(s.equals("ua")){
OnPanel pane = new OnPanel();
pane.setBounds(0, 0, 500, 400);
pane.setVisible(true);
come.setVisible(false);
//getContentPane().remove(come);
getContentPane().add(pane);
NetBar.this.repaint();
}else if(s.equals("dw")) {
Downput dow=new Downput();
dow.setBounds(250, 250, 300, 250);
dow.setVisible(true);
}else if(s.equals("ex")) {
NetBar.this.dispose();
System.exit(0);
}

}
}

/*class up_ActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
OnPanel pane = new OnPanel();
pane.setBounds(0, 0, 500, 400);
pane.setVisible(true);
come.setVisible(false);
//getContentPane().remove(come);
getContentPane().add(pane);
NetBar.this.repaint();
}
}

class down_ActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
Downput dow=new Downput();
dow.setBounds(250,250,300,250);
dow.setVisible(true);

}
}
class about_ActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
About abot = new About();
abot.setBounds(300,300,280,170);
abot.setVisible(true);
abot.setTitle("網吧計費管理系統");

}

}*/
private void jbInit() throws Exception {
this.setUndecorated(true);
this.setFocusableWindowState(true);
this.setLocationRelativeTo(this);
this.getRootPane().setWindowDecorationStyle(JRootPane.FRAME); //設置界面風格為Java風格
this.getRootPane().isCursorSet();
this.setLayout(null);
this.setTitle("網吧管理系統");
this.setJMenuBar(MenuCarte);
use.setText("使用");
help.setText("幫助");
exit.setText("退出");
about.setText("關於");

all_ActionListener ab=new all_ActionListener();
about.addActionListener(ab);
about.setActionCommand("ab");
//about_ActionListener ab=new about_ActionListener();
//about.addActionListener(ab);
up.setText("上機");
up.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.
KeyEvent.VK_O, java.awt.event.KeyEvent.CTRL_MASK, false));
up.setActionCommand("ua");
all_ActionListener ua=new all_ActionListener();
up.addActionListener(ua);
//up_ActionListener ua = new up_ActionListener();
//up.addActionListener(ua);
down.setText("下機");
all_ActionListener dw=new all_ActionListener();
down.addActionListener(dw);
down.setActionCommand("dw");

down.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.
KeyEvent.VK_W, java.awt.event.KeyEvent.CTRL_MASK, false));
//down_ActionListener dw=new down_ActionListener();
//down.addActionListener(dw);
exitout.setText("退出");
exitout.setActionCommand("ex");
all_ActionListener ex=new all_ActionListener();
exitout.addActionListener(ex);
exitout.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.
event.KeyEvent.VK_E, java.awt.event.KeyEvent.CTRL_MASK, false));
//exitout_ActionListener ex = new exitout_ActionListener();
//exitout.addActionListener(ex);
MenuCarte.add(use);
MenuCarte.add(help);
MenuCarte.add(exit);
help.add(about);
use.add(up);
use.add(down);
exit.add(exitout);
}

public static void main(String[] args) {
NetBar nb = new NetBar();
nb.setBounds(200, 200, 500, 400);
nb.setVisible(true);
Toolkit tf = Toolkit.getDefaultToolkit();
Image img = tf.getImage("21.JPG");
nb.setIconImage(img);
nb.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//this.setExtendedState(JFrame.MAXIMIZED_BOTH);//默認最大化;
//this.setResizable(false);//用來設置窗口大小不可變;

}
}

package com.netbarview;
/**
* <p>Title:上機界面 </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright ? 2006</p>
*
* <p>Company: ACCP</p>
*
* @author xplu20000
* @version 1.0
*/
import com.database.DbControl;
import javax.swing.JPanel;

10. 基於Java的網上教學系統源代碼

我給, hi聯系,email? Q?

閱讀全文

與java一元系統源碼相關的資料

熱點內容
celluloid教程 瀏覽:210
大話西遊2在線看免費 瀏覽:10
什麼看電視沒有水印 瀏覽:538
手機通訊錄與qq好友 瀏覽:236
牛客網java輸入輸出 瀏覽:370
什麼app要qq登錄 瀏覽:534
oracle資料庫如何執行 瀏覽:80
有趣的家庭的網站有哪些 瀏覽:148
域名升級訪問通知 瀏覽:270
片名《鬼作秀之頭顱鬼屋》 瀏覽:936
電腦系統host文件 瀏覽:996
求一個在線播放的網站 瀏覽:596
四級丶四級電影﹥ 瀏覽:582
怎麼把cad的工具欄調出來 瀏覽:742
強奸了女僵屍的電影 瀏覽:15
能在線觀看最新網址 瀏覽:317
3d電影下載網站3d電影 瀏覽:261
華為手機如何把app弄成小窗口 瀏覽:589
flash的工具欄 瀏覽:106
古風sq片 瀏覽:705

友情鏈接