- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
import java.util.Scanner;
import java.io.File;
import java.util.HashMap;
import java.util.ArrayList;
/**
* Class that contains helper methods for the Review Lab
**/
public class Review {
public static void main(String[] args) {
//System.out.print(sentimentVal("ok"));
//System.out.println(totalSentiment("simpleReview.txt"));
System.out.println(starRating("simpleReview.txt"));
//System.out.println(fakeReview("simpleReview.txt"));
}
/* public static double totalSentiment(String fileName) {
String review = textToString("simpleReview.txt");
int s = review.indexOf(" ");
double sum = 0;
//take first word from whole string
//review.substring(0 --> " ")
String firstWord = removePunctuation(review.substring(0, review.indexOf(" ")));
sum += sentimentVal(firstWord);
while(s != -1) {
int nextSpace = review.indexOf(" ", s + 1);
String word;
if (nextSpace != -1){
word = removePunctuation(review.substring(s + 1, nextSpace));
sum += sentimentVal(word);
} else {
word = removePunctuation(review.substring(s + 1));
sum += sentimentVal(word);
}
//System.out.println(sentimentVal(word));
s = nextSpace;
}
return sum;
} */
private static HashMap<String, Double> sentiment = new HashMap<String, Double>();
private static ArrayList<String> posAdjectives = new ArrayList<String>();
private static ArrayList<String> negAdjectives = new ArrayList<String>();
private static final String SPACE = " ";
static{
try {
Scanner input = new Scanner(new File("cleanSentiment.csv"));
while(input.hasNextLine()){
String[] temp = input.nextLine().split(",");
sentiment.put(temp[0],Double.parseDouble(temp[1]));
//System.out.println("added "+ temp[0]+", "+temp[1]);
}
input.close();
}
catch(Exception e){
System.out.println("Error reading or parsing cleanSentiment.csv");
}
//read in the positive adjectives in postiveAdjectives.txt
try {
Scanner input = new Scanner(new File("positiveAdjectives.txt"));
while(input.hasNextLine()){
String temp = input.nextLine().trim();
System.out.println(temp);
posAdjectives.add(temp);
}
input.close();
}
catch(Exception e){
System.out.println("Error reading or parsing postitiveAdjectives.txt\n" + e);
}
//read in the negative adjectives in negativeAdjectives.txt
try {
Scanner input = new Scanner(new File("negativeAdjectives.txt"));
while(input.hasNextLine()){
negAdjectives.add(input.nextLine().trim());
}
input.close();
}
catch(Exception e){
System.out.println("Error reading or parsing negativeAdjectives.txt");
}
}
/**
* returns a string containing all of the text in fileName (including punctuation),
* with words separated by a single space
*/
public static String textToString( String fileName )
{
String temp = "";
try {
Scanner input = new Scanner(new File(fileName));
//add 'words' in the file to the string, separated by a single space
while(input.hasNext()){
temp = temp + input.next() + " ";
}
input.close();
}
catch(Exception e){
System.out.println("Unable to locate " + fileName);
}
//make sure to remove any additional space that may have been added at the end of the
string.
return temp.trim();
}
/**
* @returns the sentiment value of word as a number between -1 (very negative) to 1 (very
positive sentiment)
*/
public static double sentimentVal( String word )
{
try
{
return sentiment.get(word.toLowerCase());
}
catch(Exception e)
{
return 0;
}
}
/**
* Returns the ending punctuation of a string, or the empty string if there is none
*/
public static String getPunctuation( String word )
{
String punc = "";
for(int i=word.length()-1; i >= 0; i--){
if(!Character.isLetterOrDigit(word.charAt(i))){
punc = punc + word.charAt(i);
} else {
return punc;
}
}
return punc;
}
/**
* Returns the word after removing any beginning or ending punctuation
*/
public static String removePunctuation( String word )
{
while(word.length() > 0 && !Character.isAlphabetic(word.charAt(0)))
{
word = word.substring(1);
}
while(word.length() > 0 && !Character.isAlphabetic(word.charAt(word.length()-1)))
{
word = word.substring(0, word.length()-1);
}
return word;
}
/**
* Randomly picks a positive adjective from the positiveAdjectives.txt file and returns it.
*/
public static String randomPositiveAdj()
{
int index = (int)(Math.random() * posAdjectives.size());
return posAdjectives.get(index);
}
/**
* Randomly picks a negative adjective from the negativeAdjectives.txt file and returns it.
*/
public static String randomNegativeAdj()
{
int index = (int)(Math.random() * negAdjectives.size());
return negAdjectives.get(index);
}
/**
* Randomly picks a positive or negative adjective and returns it.
*/
public static String randomAdjective()
{
boolean positive = Math.random() < .5;
if(positive){
return randomPositiveAdj();
} else {
return randomNegativeAdj();
}
}
/** Activity 2 starRating method
Write the starRating method here which returns the number of stars for the review based on
enter code here its totalSentiment.
* @param fileName
*/
public static int starRating(String filename){
// determine number of stars between 0 and 4 based on totalSentiment value
double totalSentiment = totalSentiment("simpleReview.txt");
// write if statements here
if (totalSentiment < 15 && totalSentiment >= 10) {
return 4;
} else if(totalSentiment < 10 && totalSentiment >= 5) {
return 3;
} else if(totalSentiment < 5 && totalSentiment >= 0) {
return 2;
} else if(totalSentiment < 0) {
return 1;
} else {
return 0;
}
}
public static double totalSentiment(String simpleReview) {
String review = textToString("simpleReview.txt");
int s = review.indexOf(" ");
double sum = 0;
//take first word from whole string
//review.substring(0 --> " ")
String firstWord = removePunctuation(review.substring(0, review.indexOf(" ")));
sum += sentimentVal(firstWord);
while(s != -1) {
int nextSpace = review.indexOf(" ", s + 1);
String word;
if (nextSpace != -1){
word = removePunctuation(review.substring(s + 1, nextSpace));
sum += sentimentVal(word);
} else {
word = removePunctuation(review.substring(s + 1));
sum += sentimentVal(word);
}
s = nextSpace;
}
return sum;
}
}
当我运行代码时,它将打印我的积极形容词列表。我什至没有运行该代码,所以我很困惑为什么会发生这种情况。
谁能帮忙:)
我目前正在从事一个 CS 项目,该项目最终会对 .txt 文件进行审查,然后从随机正面或随机负面形容词中随机选择一个形容词。这在代码中显示,但没有显示用于审核的 .txt 文件
最佳答案
您的 static
初始值设定项 block 中有一个 System.out.println(temp);
语句。
该语句似乎打印了 positiveAdjectives.txt
文件中的行。
该 static
block 在您的 Review
类初始化时执行,这发生在您的 main
方法执行之前。
关于java - 为什么我没有打印却打印出这个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59351718/
有没有更好的方法用 PHP 将数据输出到 html 页面? 如果我想在 php 中用一些 var 制作一个 div,我会写类似的东西 print (''.$var.''); 或 echo "''.$v
我可以使用 java awt print 来打印文档/文件而不是使用 javax print 吗?我发现在 java awt print 中有一个选项可以使用 AttributedString 将内容
目前我通过以下方式运行 R 脚本: R --slave argument1 argument2 ... 我想知道 R 中关于如何退出脚本并发出警告的最佳实践,q() 会这样做吗? if(!file.
谁能告诉我如何编写一个程序,用 gcc 编译时打印 c ,用 g++ 编译时打印 c++? 最佳答案 #ifdef __cplusplus printf("c++\n"); #else
我需要支持在 KitKat 设备上打印,但我的目标 SDK 是 13(无法更改)。 特别是我需要打印一个 webview。 这是用于打印 webview 的 API: http://developer
我正在尝试创建一个简单的函数,其中 python 将根据您的年份输入计算年龄。我已经尝试了几种方法,但我没有运气 atm。 附:对不起,我是新手。 ame = input(" Enter your n
JavaFX 2.0 是否支持打印?我有一个文本区域,我从中获取文本然后我想打印它,但似乎没有这个功能。 当然,这里我说的是打印到打印机。 :) 最佳答案 尚不支持。作为一种解决方法,您可以使用 Ja
我试图找出printOn的重点。我查看了一些实现它的类,看起来它只是帮助打印不同数据类型的单位。这是准确的吗? 如果是这样,有人能指出我如何为我自己的类(class)实现这一点的正确方向吗?我将在可能
我无法让 IE 打印我的 Canvas (使用 excanvas 生成)...我使用的是最新版本的 excanvas。 http://dl.dropbox.com/u/997831/canvas.ht
我搜索了很多但没有人回答我的问题,我读到在这样的信号处理程序中使用 cout 是不安全的: void ctrlZHandler(int sig_num) { //SIGTSTP-18
我有兴趣打印一系列查询。我有以下代码。 start = datetime.datetime(2012, 2, 2, 6, 35, 6, 764) end = datetime.datetime(201
public class javaClass { public static void main(String [] arg) { String row1 = "A____A"
我需要写入前一行的命令,例如不带\n 的 print()。 下面是一些示例代码: a=0 print("Random string value") if a==0: print_to_prev
我有一个使用 UIKit 和 Objective C 的旧 iOS 应用程序,我目前正在将其移植到 SwiftUI 和 Swift。一切都很顺利,我喜欢 Swift 和 SwiftUI。该应用程序已经
我创建了一个求和函数,它接受一个开始编号和一个结束编号,并返回这两点之间的总和答案 def print_sum_equations(start_number,end_number):
在 Perl 6 中,print 和有什么区别? , put和 say ? 我怎么看 print 5不同,但 put 5和 say 5看起来一样。 最佳答案 put $a就像 print $a.Str
我正在使用 here 中的 getOrgChart 库,我正在尝试打印整个图表,而不仅仅是可见部分。不幸的是,当使用标准库打印功能时,它只会打印出第一部分,而我不知道如何打印整个图表(该图表相当宽,大
我制作了一个非常适合 A4 页面的 View 。现在我想打印它。请注意,我没有使用drawRect或类似的东西,只是一个带有 subview 和文本标签的普通 View 。我的问题是,我对该 View
由于 Cocoa-Java 已弃用,我正在将 Cocoa-Java 代码迁移到 Cocoa + JNI。该代码打印存储在文件中的图像。新的 Cocoa 代码基本上是: NSImage *image =
这个问题已经有答案了: Printing a TDBGrid (4 个回答) 已关闭 6 年前。 如何在不安装或下载组件的情况下打印 DBGrid? 或者 如何将 DBGrid 的数据放入 RichE
我是一名优秀的程序员,十分优秀!