小编Ana*_*kie的帖子

写入控制台和文本文件

我从互联网上找到了下面的代码,但它不会将打印的控制台写入omt.txt,它只会System.out.println在第二个catch块之后写入语句.如果你运行代码,你就会理解我的意思.我都是想要将控制台上的内容写入"omt.txt"文件,这就是所有...

经过一些回答,我发现我的问题不明确,对不起.我想将控制台输出保存到omt.txt文本文件中.如果在控制台上打印"Hello 123",它也应该在omt.txt文件中.换句话说,打印机上的任何内容都应该同时写在om.txt文件中,或者可以在控制台执行后但是应该是1对1相同!

import java.io.File;
import java.io.FileOutputStream;
import java.io.PrintStream;

public class Wrt_file {

    public static void main(String[] args) {
        System.out.println("THIS is what I see on the console. but not on TEXT file"); 

          File f = new File("omt.txt");
          if(!f.exists())
          {
            try {
                       f.createNewFile();
                } catch (Exception e) {
                    e.printStackTrace();
                }
          }

        try {
                FileOutputStream fos = new FileOutputStream(f);
                PrintStream ps = new PrintStream(fos);
                System.setOut(ps);
        } catch (Exception e) {
            e.printStackTrace();
        }
        System.out.println("THIS is what I see on the text …
Run Code Online (Sandbox Code Playgroud)

java console file-io fileoutputstream printstream

10
推荐指数
1
解决办法
2万
查看次数

在JavaFX中关闭子窗口后如何刷新父窗口?

我有一个显示人的父窗口,即:

姓名:约翰

姓氏:布朗

年龄:18

我单击编辑按钮,子窗口打开,更改名字,然后单击接受,子窗口关闭,更改保存在 mysql 数据库中,但父窗口仍显示旧值。我确实有一个有效的刷新方法,但是如何从子窗口调用它或将其设置为在关闭子窗口后调用?

父窗口和子窗口都有控制器和 fxml。任何帮助,将不胜感激。

java javafx fxml

3
推荐指数
2
解决办法
9629
查看次数

更改Swing GUI的界限和JButton的命名

我知道如何设置边界,所以最后一个新的setbounds()调用会给出新的边界,但是我不知道新边界应该多长/多,这取决于这里的按钮的输入数量例如:

import java.awt.BorderLayout;
import java.awt.Color; 
import java.awt.EventQueue;
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.JToggleButton;
import javax.swing.border.EmptyBorder;

public class Book_GUI extends JFrame {

private EconomyClass eco;
private JPanel contentPane;

/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Book_GUI frame = new Book_GUI();
                frame.setVisible(true);

            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the frame.
 */
public Book_GUI() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); …
Run Code Online (Sandbox Code Playgroud)

java swing jbutton setbounds

2
推荐指数
1
解决办法
2128
查看次数

MySQL Workbench工作区恢复?

我迁移到另一个域,所以我的用户名现在不同了,但是当我打开MySQL Workbench时,我确实备份了我的C:\ Users\Username 5.2.44 CE我没有看到以前保存的连接和sql查询我有...怎么能我还原他们?PS:旧用户名和文件仍在我的计算机上.操作系统:Win7的

mysql mysql-workbench

2
推荐指数
1
解决办法
6633
查看次数

我的park_car函数有什么问题?

我正在为学校做一个任务,我正在慢慢地实现它,我不知道为什么我的park_car功能不起作用,我只是想做一个测试,程序崩溃......这是我的代码.

PS:我无法更改,***p2parkboxes因为它像启动文件一样在大多数其他变量中给出.我只想看看0楼的第一个元素:HH-AB 1234.非常感谢你的帮助.PS2:我不能使用std :: string,因为它不允许执行任务.

#include <iostream>
#include <cstring>
using namespace std;

#define EMPTY "----------"
class Parkbox{
    char *license_plate; // car's license plate
    public:
    Parkbox(char *s = EMPTY); // CTOR
    ~Parkbox(); // DTOR
    char *get_plate(){return license_plate;}
};
class ParkingGarage{
    Parkbox ***p2parkboxes;
    //int dimensions_of_parkhouse[3]; // better with rows,columns,floors
    int rows,columns,floors; // dimensions of park house
    int total_num_of_cars_currently_parked;
    int next_free_parking_position[3];
    // PRIVATE MEMBER FUNCTION
    void find_next_free_parking_position();
    public:
    ParkingGarage(int row, int col, int flr);// CTOR,[rows][columns][floors]
    ~ParkingGarage(); // DTOR
    bool …
Run Code Online (Sandbox Code Playgroud)

c++ heap multidimensional-array

1
推荐指数
1
解决办法
180
查看次数

单击按钮在 AngularJS + TypeScript 中浏览文件

我有user.component.htmluser.component.ts 我发现的所有示例都是 html 这样<input type="file" /> 我不想使用这种样式。我的 html 文件中有:

<button type="button" class="btn" (click)="openPicture()" Browse </button>
Run Code Online (Sandbox Code Playgroud)

下面是 ts 文件上的函数:

  public openPicture() {
    //for testing
    console.log('button clicked to open picture');

    var picture = browse.the.picture.and.assing.to.this.variable;

    //another test, see on console if picture is read
    console.log('%c       ', 'font-size: 100px; background: {{picture}} no-repeat;');
    // Later display picture variable on html and save to database or do anything desired.
}
Run Code Online (Sandbox Code Playgroud)

我在stackoverflow上找到了一个例子angular/material但我没有这个模块。有没有其他替代方法,而无需安装任何额外的包来解决这个问题?

html javascript spring angularjs typescript

1
推荐指数
1
解决办法
4381
查看次数

FXML代表什么?

来自JavaFX的fxml?你能打开缩写吗?

我找到的所有首字母缩略词网站都没有返回,最接近的是来自dummies.com但是这不是肯定的.

java javafx fxml

-2
推荐指数
1
解决办法
1290
查看次数