我正在寻找更好的解决方案。我正在为我的学校项目制作一个匹配的文字游戏,但我有一些问题。而不是这种代码风格,我想从sql数据库中随机显示我的值,但不重复相同的单词。我尝试了一些东西,但它不起作用,所以我将非常感谢你的帮助。
以下是我的小游戏的截图:when i click start words will be open, and the game will start...
我的代码是:
<!DOCTYPE html>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@page import="java.util.*" %>
<%! String[] wordsleft ={"Belgrade","Zagreb","Sarajevo", "Washington", "Paris" };
%>
<%! String[] wordsright ={"Serbia","Bosnia","Croatia","France","USA"};
%>
<%!
String printleft(){
Random rand = new Random();
int a = rand.nextInt(4 - 0 + 1) + 0;
return String.valueOf(wordsleft[a]);
} %>
<%!
String printright(){
Random rand = new Random();
int a = rand.nextInt(4 - 0 + 1) + 0;
return String.valueOf(wordsright[a]);
} %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="cssstyle.css" rel="stylesheet">
<title>Matching Words</title>
</head>
<body>
<h1 id="welcome">Welcome!</h1>
<p class="tekst">Spojnica je igra sa rečima. <br><br>U dve kolone je prikazano po 5 reči.
Svaka reč u levoj koloni ima svoj par u desnoj koloni. Za svaki spojen par dobijate 3 poena.
</p>
<div id="container">
<div class="containerlevo">
<input type="submit" class="leftword" name="prvo" id="firstleft" value="?" />
<input type="submit" class="leftword" name="drugo" id="secondleft" value="?" />
<input type="submit" class="leftword" name="trece" id="thirdleft" value="?" />
<input type="submit" class="leftword" name="trece" id="fourthleft" value="?" />
<input type="submit" class="leftword" name="trece" id="fifthleft" value="?" />
</div>
<div class="containerdesno">
<input type="submit" class="rightword" name="prvo" id="firstright" value="?" />
<input type="submit" class="rightword" name="drugo" id="secondright" value="?" />
<input type="submit" class="rightword" name="trece" id="thirdright" value="?" />
<input type="submit" class="rightword" name="drugo" id="fourthright" value="?" />
<input type="submit" class="rightword" name="trece" id="fifthright" value="?" />
</div>
<form action="Rezultat" method="post" >
<input class="button start" type="button" id="start" onclick = "printright(); printleft();" value="START" name="start"/>
<input class="button" type="submit" id="end" value="END" name="end"/>
</form>
</div>
</body>
</html>
<script>
function printleft(){
document.getElementById("firstleft").value = "<%= printleft() %>";
document.getElementById("secondleft").value = "<%= printleft() %>";
document.getElementById("thirdleft").value = "<%= printleft() %>";
document.getElementById("fourthleft").value = "<%= printleft() %>";
document.getElementById("fifthleft").value = "<%= printleft() %>";
document.getElementById("start").disabled = true;
}
function printright(){
document.getElementById("firstright").value = "<%= printright() %>";
document.getElementById("secondright").value = "<%= printright() %>";
document.getElementById("thirdright").value = "<%= printright() %>";
document.getElementById("fourthright").value = "<%= printright() %>";
document.getElementById("fifthright").value = "<%= printright() %>";
document.getElementById("start").disabled = true;
}
答案 0 :(得分:0)
要在名称上使用数据库,需要添加和学习很多东西。也许你想从名字文件开始 - 这似乎更容易开始。
尽管如此。首先,您需要创建一个数据库,并根据所使用的jdbc驱动程序,创建数据库的jdbc连接字符串(此处为mysql
)。
String connurl = "jdbc:mysql://localhost:3306/riddle?profileSQL=true";
然后你打开需要在应用程序中加载一次驱动程序类,通常在init()
或甚至更好地作为上下文监听器。在使用JDBC时,最佳做法是在应用程序部署描述符中定义数据源。
描述这一切的所有细节显然超出了范围,并且肯定已经在其他地方更好地写了。您可以找到大量示例:Netbeans在此处有一个教程显示https://netbeans.org/kb/docs/web/mysql-webapp.html
然后,您应该从一个为您提供单词列表的类开始,一个模型类。模型类将隐藏从JSP页面获取的所有数据。
这就是你应该去的地方:从JSP中删除所有函数并将数据处理放在模型类中。然后在JSP中使用该模型类来提供数组。
当你完成后,你只需要将模型更改为从文件而不是const数组中读取。如果你有这个工作,请处理数据库。