當前位置:首頁 » 操作系統 » 大型java項目源碼

大型java項目源碼

發布時間: 2022-02-17 14:50:29

❶ 哪可以有免費的java項目工程的源代碼下載 急需。

網路一下,想飛社區,在資源里有,在「JAVA開發-JAVA實例」分類下面,或者在"項目案例"分類下面。多是源碼+說明文檔+SQL腳本的,你可以參考一下

❷ 求給一個Java Web期末大作業項目(包含源代碼)

有做好了的,除了EL沒用其他技術都用到了的,做了一個小型的個人博客

❸ java公司中的實際項目源碼

項目源碼有很多,各種各樣的,你需要哪一種!有幾百行的,有上萬行的

❹ 求JavaEE 真實項目源代碼(不要練習的那種,像什麼圖書管理系統啊等等,拿不出手)

真正的javaEE項目一般是不會被放到網上的吧。網上的大多都是試驗品,不具備實用價值。就算你看了源碼,口才好能侃,但一旦面試問到項目中的細節實現就露餡了。項目經驗是實實在在做出來的,做項目和看源碼還是不一樣的。我也剛學完,不過我是上的培訓班。第一份工作是個外包公司,結果幾輪面試下來都是因為說道項目細節和流程實現就被識破了。唉,現在找了個小公司,從零開始攢經驗呢。

❺ 求一套完整的javaweb項目的源代碼

http://download.csdn.net/detail/jiangzaifu/6036001
自己下載吧,很多的啊 csdn上

❻ 求大型JAVA程序的原代碼

用java 寫的發郵件程序的原代碼1
Properties properties = System.getProperties();
properties.put("mail.smtp.host","smtp.sina.com.cn");
properties.put("mail.transport.protocol", "smtp");
properties.put("mail.smtp.auth","true");
Session session = Session.getInstance(properties,
new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(strUserName,strPassword);
}
});
try
{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(strMail));
InternetAddress[] toadd = InternetAddress.parse(strEmailTo);
message.setRecipients(Message.RecipientType.TO,toadd);

message.setSubject(strSubject,"Shift_JIS");
message.setText(strFullMailText,"Shift_JIS");

Transport transport = session.getTransport();
message.saveChanges();
transport.send(message,message.getAllRecipients());
transport.close();

}
catch (AddressException e)
{
}
catch (SendFailedException e)
{
}
catch (MessagingException e)
{
}

再給你一個java計算器原代碼
import java.awt.*;
import java.awt.event.*;
public class Calculator extends WindowAdapter implements ActionListener
{
private double result=0,data1=0,radixPointDepth=1;
private boolean radixPointIndicate=false,resultIndicate=false;
private char prec='+';
private Frame f;
private TextField tf;
private Button b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15,b16,b17;
private Panel p;
static public void main(String args[])
{
Calculator de=new Calculator();
de.go();
}
public void go()
{
f=new Frame("計算器");
p=new Panel();
p.setLayout(new GridLayout(4,4));
tf=new TextField(30);
b1=new Button("7");
b2=new Button("8");
b3=new Button("9");
b4=new Button("+");
b5=new Button("4");
b6=new Button("5");
b7=new Button("6");
b8=new Button("-");
b9=new Button("1");
b10=new Button("2");
b11=new Button("3");
b12=new Button("*");
b13=new Button("0");
b14=new Button(".");
b15=new Button("=");
b16=new Button("/");
b17=new Button("清零");
f.add(tf,"North");
f.add(p,"Center");
f.add(b17,"South");
p.add(b1);
p.add(b2);
p.add(b3);
p.add(b4);
p.add(b5);
p.add(b6);
p.add(b7);
p.add(b8);
p.add(b9);
p.add(b10);
p.add(b11);
p.add(b12);
p.add(b13);
p.add(b14);
p.add(b15);
p.add(b16);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
b5.addActionListener(this);
b6.addActionListener(this);
b7.addActionListener(this);
b8.addActionListener(this);
b9.addActionListener(this);
b10.addActionListener(this);
b11.addActionListener(this);
b12.addActionListener(this);
b13.addActionListener(this);
b14.addActionListener(this);
b15.addActionListener(this);
b16.addActionListener(this);
b17.addActionListener(this);
f.addWindowListener(this);
f.setSize(250,190);
f.setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
String s;
s=e.getActionCommand();
switch(s.charAt(0))
{
case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9':
if(resultIndicate)
{
result=0;
data1=0;
prec='+';
}
Integer Int1=new Integer(s);
if(radixPointIndicate)
{
radixPointDepth=radixPointDepth/10;
data1=data1+(Int1.intValue())*radixPointDepth;
}
else
{
data1=data1*10+(Int1.intValue());
}
Double displayNumber=new Double(data1);
tf.setText(displayNumber.toString());
resultIndicate=false;
break;
case '+': case '-':case '*':case '/':case '=':
if(s.charAt(0)!='='&&resultIndicate)
{
prec=s.charAt(0);
resultIndicate=false;
}
else
{
switch(prec)
{
case '+':
result=result+data1;
break;
case '-':
result=result-data1;
break;
case '*':
result=result*data1;
break;
case '/':
result=result/data1;
break;
}
}
radixPointIndicate=false;
radixPointDepth=1;
displayNumber=new Double(result);
tf.setText(displayNumber.toString());
if(s.charAt(0)!='=')
{
data1=0;
prec=s.charAt(0);
}
else
{
resultIndicate=true;
}
break;
case '.':
radixPointIndicate=true;
break;
}
if(s.equals("清零"))
{
result=0;
data1=0;
radixPointDepth=1;
tf.setText("");
}
}
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}

❼ 急求Java項目 購物網站源碼最好是比較大型的項目,要有資料庫跟源代碼的。謝謝急求中郵箱[email protected]

我這有 一個數碼商城 還有一個體育用品商城

❽ 軟體 java 項目 源代碼,哪個網站有提供下載的,大家

github,網路一下這個,最大的java開源代碼庫

❾ java項目,求源代碼,謝謝

網路搜索,非常多的

熱點內容
單片機android 發布:2024-09-20 09:07:24 瀏覽:759
如何提高三星a7安卓版本 發布:2024-09-20 08:42:35 瀏覽:659
如何更換伺服器網站 發布:2024-09-20 08:42:34 瀏覽:306
子彈演算法 發布:2024-09-20 08:41:55 瀏覽:284
手機版網易我的世界伺服器推薦 發布:2024-09-20 08:41:52 瀏覽:812
安卓x7怎麼邊打游戲邊看視頻 發布:2024-09-20 08:41:52 瀏覽:158
sql資料庫安全 發布:2024-09-20 08:31:32 瀏覽:89
蘋果連接id伺服器出錯是怎麼回事 發布:2024-09-20 08:01:07 瀏覽:503
編程鍵是什麼 發布:2024-09-20 07:52:47 瀏覽:655
學考密碼重置要求的證件是什麼 發布:2024-09-20 07:19:46 瀏覽:479